beri nama file dengan nama 'tabung.cpp' lalu ketikan kode berikut :
#include <iostream.h>Selamat Mencoba .... :)
#include <conio.h>
#define PI 3.14
int main (void)
{
int n;
float r;
float t;
cout << "Program Menghitung Luas dan Volume Tabung" <<endl;
cout << "Silahkan pilih : " << endl;
cout << "1.Menghitung Luas Tabung " << endl;
cout << "2.Menghitung Volume Tabung " << endl;
cout << "Pilihan Anda = ";
cin >> n ;
if(n==1)
{
cout << "Menghitung Luas Tabung" << endl;
cout << "Jari-jari = ";
cin >> r ;
cout << "\n";
cout << "Tinggi = ";
cin >> t ;
cout << "\n\n";
float L = 2 * PI * r * (r + t);
cout << "Luas Tabung Adalah = " << L ;
}else
{
cout << "Menghitung Volume Tabung" << endl;
cout << "Jari-jari = ";
cin >> r ;
cout << "\n";
cout << "Tinggi = ";
cin >> t ;
cout << "\n\n";
float V = PI * r * r * t ;
cout << "Volume Tabung Adalah = " << V ;
}
getch();
}
No comments:
Post a Comment
Monggo di komeng ...