Design a flowchart and pseudocode for a mobile subscription plan. Allow the user to enter the number of months and the plan price. Assume that the user earns extra 15 percent discount every month, while the maximum discount is 45 percent. The program output is a schedule that lists each month's number in the mobile subscription plan starting with month 1 and the user’s savings at that month. Example: (This is an example; your program should accept the values from the user) User entered 6 months mobile subscription for 250 USD plan. The output: Month number 1 the discount percentage is 0% and the discount amount is 0 USD Month number 2 the discount percentage is 15% and the discount amount is 37.5 USD Month number 3 the discount percentage is 30% and the discount amount is 75 USD Month number 4 the discount percentage is 45% and the discount amount is 112.5 USD Month number 5 the discount percentage is 45% and the discount amount is 112.5 USD Month number 6 the discount percentage is 45% and the discount amount is 112.5 USD
Design a flowchart and pseudocode for a mobile subscription plan. Allow the user to enter the number of months and the plan price. Assume that the user earns extra 15 percent discount every month, while the maximum discount is 45 percent. The program output is a schedule that lists each month's number in the mobile subscription plan starting with month 1 and the user’s savings at that month.
Example: (This is an example; your program should accept the values from the user)
User entered 6 months mobile subscription for 250 USD plan.
The output:
Month number 1 the discount percentage is 0% and the discount amount is 0 USD
Month number 2 the discount percentage is 15% and the discount amount is 37.5 USD
Month number 3 the discount percentage is 30% and the discount amount is 75 USD
Month number 4 the discount percentage is 45% and the discount amount is 112.5 USD
Month number 5 the discount percentage is 45% and the discount amount is 112.5 USD
Month number 6 the discount percentage is 45% and the discount amount is 112.5 USD
Trending now
This is a popular solution!
Step by step
Solved in 2 steps with 2 images