-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTugas 10 - Harga Cicilan.cpp
59 lines (50 loc) · 1.08 KB
/
Tugas 10 - Harga Cicilan.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#include <iostream>
#include <conio.h>
using namespace std;
int harga;
int tenor;
int pokok;
float bunga;
float interest;
float bayar_bunga;
float total;
void input()
{
cout<<"Harga barang: ";
cin>>harga;
cout<<"Tenor (dalam bulan): ";
cin>>tenor;
cout<<"Bunga (dalam %): ";
cin>>bunga;
}
void proses()
{
interest = bunga / 100;
pokok = harga / tenor;
}
void output()
{
cout<<"\nBunga: "<<bunga<<"%"<<endl;
cout<<"Cicilan pokok: "<<pokok<<endl;
cout<<"\nCicilan ke 1\n";
cout<<"-----------------------------------\n";
cout<<"Bunga ke 1 : Rp "<< harga * interest <<endl;
cout<<"Total bayaran ke 1 : Rp "<< pokok + ( harga * interest ) <<endl;
for (int i = 2; i <= tenor; i++)
{
cout<<"\nCicilan ke- "<< i <<endl;
cout<<"-----------------------------------\n";
bayar_bunga = (harga - (pokok * (i-1))) * interest;
total = pokok + bayar_bunga;
cout<<"Bunga ke- "<< i <<" = Rp "<<bayar_bunga<<endl;
cout<<"Total bayaran ke- "<< i <<" = Rp "<<total<<endl;
}
}
//Main Function
int main()
{
input();
proses();
output();
getch();
}