You are on page 1of 2

Alquin D.

Teodosio
B.S.I.T- 1
Introduction of Information and Technology
Analyze the Problem
Problem: Design a program that computes the Down payment, Monthly
Payments and Grand Total of all Monthly Payment.

A. Program Output: Down Payments, Monthly Interest, Monthly Payments


and Grand Total.
B. Program Input: Selling Price, Terms
C. Logarithms;
C.1. Obtain the Selling Price and Terms from the user.
C.2. Compute Down payments using formula DP= SP*0.10.
Compute Monthly Interest using formula MI= (SP/MP)*0.035.
Compute Monthly Payments using formula MP=
((SP+DP)/MT)+MI.
Compute Grand Total by adding all Monthly Payments.
C.3. Display the value of Down Payments.
Display the value of Monthly Interest.
Display the value of Monthly Payments.
Display the value of Grand Total.

Outline of the Problem

Main Module
Obtain Selling Price
Calculate Down Payments
Display Value of Down Payments
Obtain Terms
Calculate Monthly Interest
Display Value of Monthly Interest
Calculate Monthly Payments
Display Value of Monthly Payments
Calculate Grand Total
Display Value of Grand Total

Sub Module 1 Sub Module 2 Sub Module 3


Display Selling Price DP= SP*10%
Display “Down Payments
Input Value of selling MI= (SP/MT)*35%
equal to the result”.
Price MP= ((SP+DP)/ MT) +
Display “Monthly Interest
Display Terms MI
equal to the result”.
Input Value of Terms Grand Total=Total
Display “Monthly Payments
Sum of all Monthly
equal to the result”.
Display “Grand Total equal
to the result”.

You might also like