1. Write a program to enter an individual's year of birth and the current year and calculate and return the individual's age. Input & Storage Processing Output Write a program to accept four numbers and produce an output of their sum, average and product 2. |Input & Storage Processing Output 3. Persons under 18 are not allowed in at 'Shutters Night Club.' Write a program to read a person's age if it is under 18, and output 'Underage person'. Input & Storage Processing Output 4. Write a program to input a number N. If the number is greater than 50 subtract 10 from the number, otherwise multiply the number by 2 and add 5. Print the number and the result. Input & Storage Processing Output
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.
Trending now
This is a popular solution!
Step by step
Solved in 8 steps with 4 images