给为大神帮忙看看啊
1. PurposeYou are going to implement an 8-bit Multiplier and an 8-bit Divider simulator using C language. Your programs will perform multiplication and division operations as well as the algorithms indicated in the flow charts in section 2.
2. Algorithms and Specifications
The multiplication operation is:
Product = Multiplicand × Multiplier.
The division operation is:
Dividend = Quotient × Divisor + Remainder.
Consider the multiply and divide algorithms as following: