The purpose of this applied project is to develop algorithms for three involved tasks (from simple to advanced).
Design an algorithm to first receive three numbers, then conduct the sum of three numbers (variable: result1), and do the multiplication of these three numbers (variable: result2), finally do the sum of the two results (result3). Print the two intermediate results and the final result. After having your algorithm, please produce a desk check with two sets of test data (10, 5, -3) and (1320, -260, 78).
Hint: If you feel like going for a high score on this task, you need to consider good cohesian and coupling.
Design an algorithm to print odd numbers from 0 to n (n is required to be an input positive number), as well as print the square root of these numbers. You need to demonstrate the use of selection and/or repitition statement. Provide the defining diagram.
Hint: If you feel like going for a high score on this task, you need to consider good cohesion and coupling.
Design an algorithm which will ask the user for a day-month-year (e.g., 08 September 2021) and prompt them to type it into the keyboard (input day/month/year separately). It will keep asking the user for this information until it is valid. When a valid date-month-year is provided, it displays the full information and a message saying it was successful. You need to demonstrate the use of selection and repetition statement. Provide the defining diagram.
Hint: If you feel like going for a high score on this task, you need to consider good cohesion and coupling.