program mencari persegi panjang C++
#include <iostream>
#include <conio>
typedef struct { int panjang ;
int lebar ;
int luas ;
} pp ;
pp tipe_1 ;
pp tipe_2 ;
pp tipe_3 ;
pp tipe_4 ;
pp tipe_5 ;
void main () {
cout << "masukkan panjang = " ;
cin >> tipe_1.panjang ;
cout << "masukkan lebar = " ;
cin >> tipe_1.lebar ;
tipe_1.luas = tipe_1.panjang * tipe_1.lebar ;
cout << "masukkan panjang = " ;
cin >> tipe_2.panjang ;
cout << "masukkan lebar = " ;
cin >> tipe_2.lebar ;
tipe_2.luas = tipe_2.panjang * tipe_2.lebar ;
cout << "masukkan panjang = " ;
cin >> tipe_3.panjang ;
cout << "masukkan lebar = " ;
cin >> tipe_3.lebar ;
tipe_3.luas = tipe_3.panjang * tipe_3.lebar ;
cout << "masukkan panjang = " ;
cin >> tipe_4.panjang ;
cout << "masukkan lebar = " ;
cin >> tipe_4.lebar ;
tipe_4.luas = tipe_4.panjang * tipe_4.lebar ;
cout << "masukkan panjang = " ;
cin >> tipe_5.panjang ;
cout << "masukkan lebar = " ;
cin >> tipe_5.lebar ;
tipe_5.luas = tipe_5.panjang * tipe_5.lebar ;
clrscr () ;
cout << "luas 1 = " << tipe_1.luas ;
if (tipe_1.luas>0 && tipe_1.luas<20){
cout << "\nkecil" ;
}
else if (tipe_1.luas>=20 && tipe_1.luas<40){
cout << "\nsedang" ;
}
else if (tipe_1.luas>=40){
cout << "\nbesar" ;
}
cout << "\nluas 2 = " << tipe_2.luas ;
if (tipe_2.luas>0 && tipe_2.luas<20){
cout << "\nkecil" ;
}
else if (tipe_2.luas>=20 && tipe_2.luas<40){
cout << "\nsedang" ;
}
else if (tipe_2.luas>=40){
cout << "\nbesar" ;
}
cout << "\nluas 3 = " << tipe_3.luas ;
if (tipe_3.luas>0 && tipe_3.luas<20){
cout << "\nkecil" ;
}
else if (tipe_3.luas>=20 && tipe_3.luas<40){
cout << "\nsedang" ;
}
else if (tipe_3.luas>=40){
cout << "\nbesar" ;
}
cout << "\nluas 4 = " << tipe_4.luas ;
if (tipe_4.luas>0 && tipe_4.luas<20){
cout << "\nkecil" ;
}
else if (tipe_4.luas>=20 && tipe_4.luas<40){
cout << "\nsedang" ;
}
else if (tipe_4.luas>=40){
cout << "\nbesar" ;
}
cout << "\nluas 5 = " << tipe_5.luas ;
if (tipe_5.luas>0 && tipe_5.luas<20){
cout << "\nkecil" ;
}
else if (tipe_5.luas>=20 && tipe_5.luas<40){
cout << "\nsedang" ;
}
else if (tipe_5.luas>=40){
cout << "\nbesar" ;
}
getch () ;
}
0 komentar:
Posting Komentar