3. Pseudo code below shows the simple steps to identify if an input number is an odd or even number. Based on your under
Posted: Fri May 20, 2022 11:09 am
3. Pseudo code below shows the simple steps to identify if an input number is an odd or even number. Based on your understanding of the algorithm, draw the equivalent flowchart with the arithmetic and logic operations are replaced by the equivalent C operator. 1. Begin 2. Read number A 3. 4. If A is divisible by 2 print even else 5. 6. print odd 7. end if 00 8. End