Solution: Divide every bit of the dividend from the high position, keep the quotient obtained by each calculation, and add the next bit to the remainder for operation. After all the digits of the dividend are operated in this order, the obtained quotients are combined in order, and the remainder is the result of the last operation.
Problem solving process:
Step 1: 24÷8=3, and the remainder is 0.
Step 2: 5÷8=0, and the remainder is 5.
According to the above calculation steps, the combined result is 30 and the remainder is 5.
Checking calculation: 30×8+5=245
Expand data → check results: The four operation rules (multiplication and division first, then addition and subtraction, then parenthesis and then power), that is, disjoint operation (recursive equation calculation) must be carried out on the premise of this principle.
Problem solving process:
30×8+5
=240+5
=245
If in doubt, please ask questions. If satisfied, please adopt them.