exercise:Ea8e2c74c4: Difference between revisions

From Stochiki
No edit summary
No edit summary
 
Line 1: Line 1:
Build a program where control passes from main to four different functions with 4 calls.
1. Build a program where control passes from main to four different functions with 4 calls.
 
2. Now make a while loop in main with the function calls inside it. Ask for input at the beginning of the loop. End the while loop if the user hits Q
 
3. Next add conditionals to call the functions when the user enters numbers, so 1 goes to function1, 2 goes to function 2, etc.
 
4. Have function 1 call function a, which calls function b, which calls function c
 
5. Draw out a diagram of program flow, with arrows to indicate where control goes

Latest revision as of 18:37, 13 May 2024

1. Build a program where control passes from main to four different functions with 4 calls.

2. Now make a while loop in main with the function calls inside it. Ask for input at the beginning of the loop. End the while loop if the user hits Q

3. Next add conditionals to call the functions when the user enters numbers, so 1 goes to function1, 2 goes to function 2, etc.

4. Have function 1 call function a, which calls function b, which calls function c

5. Draw out a diagram of program flow, with arrows to indicate where control goes