student information (name, age, allowance per month). The number of students whose information must be collected will be stated at the start of program execution. After the inputting process, all student info will be displayed. A prompt will show telling the user if he/she wants to continue; if "Y/y", inputting student info will again commence; if "N/n", the program will terminate. Any inputs other than "Y/y" or "N/n" 1. Write ***** STUDENT DETAIL DB ----- Enter number of students: 2 Enter Student 1 name: Karlo Cris Enter Student 1 age: 24 Enter Student 1 allowance per month: 20000 Enter Student 2 name: Yuan Kyrie Enter Student 2 age: 20 Enter Student 2 allowance per month: 15000 ----- Student 1 Details ----- Name: Karlo Cris Age: 24 Allowance Per Month: 20000.0 - Student 2 Details Wame: Yuan Kyrie Age: 20 allowance Per Month: 15000.0 Try again? (Y/N): G Invalid input! Must be "Y" or "N" Try again? (Y/N): H nvalid input! Must be "Y" or "N" ry again? (Y/N): N ye! not be accepted and will loop to the prompt until a valid input is given.
Control structures
Control structures are block of statements that analyze the value of variables and determine the flow of execution based on those values. When a program is running, the CPU executes the code line by line. After sometime, the program reaches the point where it has to make a decision on whether it has to go to another part of the code or repeat execution of certain part of the code. These results affect the flow of the program's code and these are called control structures.
Switch Statement
The switch statement is a key feature that is used by the programmers a lot in the world of programming and coding, as well as in information technology in general. The switch statement is a selection control mechanism that allows the variable value to change the order of the individual statements in the software execution via search.
Step by step
Solved in 2 steps with 4 images