C++ nya :
#include <cstdlib>
#include <iostream>
using namespace std;
class v_tabung{
private:
float r,t,v,phi;
public:
v_tabung();
void input();
float volume();
void output();
};
v_tabung::v_tabung(){
cout<<"\t\t\tMoh. Adri Alfi Sidqi\n";
cout<<"\t\t\t\t1300018029\n";
}
void v_tabung::input(){
cout<<"Masukan jari-jari = ";
cin>>r;
cout<<"Masukan tinggi tabung = ";
cin>>t;
}
float v_tabung::volume(){
phi=3.14;
v=(phi*r*r)*t;
return v;
}
void v_tabung::output(){
cout<<"Jadi volume tabungnya adalah "<<phi<<"x"<<r<<"x"<<r<<"x"<<t<<" adalah "<<v;
}
int main(int argc, char *argv[])
{
v_tabung adri;
adri.input();
adri.volume();
adri.output();
cout<<endl;
system("PAUSE");
return EXIT_SUCCESS;
}
Setelah di Run maka :
Tidak ada komentar:
Posting Komentar