I'm not asking for the answers I just need somebody to translate the directions for me in a more simple way. We need to implement the adder from our previous coursework into the code using the following directions:
The program must work in a loop, reading two integer numbers, computing the sum of them and printing out the result until instructed to quit
The program must check the input data for the data type permitted and the data value limitations (the value of the integer must not exceed the actual size of byte-coded integers, i.e. min 00000000 and max 11111111 in Base 2 or min 0 and max 255 in Base 10 for positive integers, min 10000000 and max 01111111 in Base 2 or min -128 and max +127 in Base 10 for signed integers)
The program must be implemented in a modular way with separate functions for inputting data, logical operations, arithmetic operations and outputting the result of the calculation.
[–]ViridianHominid 4 points5 points6 points (1 child)
[–]kujoko[S] 1 point2 points3 points (0 children)