Showing posts with the label Program Psudo CodeShow All

Write a structured pseudocode describing how to get from AUM to the Airport. Including at least two decisions and two loops. (40 Points)

A nswer: - BEGIN DECLARATION INTERGER path PRINT choose option to reach airport …

Read more

Design a flowchart and pseudocode for gym subscription plan. Allow user to enter number of months and the plan price. Assume that the user earns extra five percent discount every month. Program output is a schedule that lists each month number in gym subscription plan starting with month 1 and the user’s savings at that month.

Example: User entered 3 months gym subscription for 120 KD plan. The output: Mont…

Read more

Design pseudocode for a program that accepts two numbers from a user and display the appropriate one of the following messages: a. First number is smaller than the second number . b. Second number < Second number> is smaller than the first number . c. Numbers are equal.

Answer – Start Declarations Integer first_number , second_number ,c Input firs…

Read more

Design a flowchart for a program that accepts four values for Customer ID, Customer name, year of birth, and age from the user and displays a message if the age is incorrect. (age = 2020 - year of birth)

Answer:-

Read more