Minggu, 04 Maret 2012

menghitung luas & volume Kubus

#include <iostream.h>
#include <conio.h>

using namespace std;
class kubus {

private:
        double s, l, v;

public:
    void input();
    double luas();
    double volume();
    void output();

};

void kubus::input(){
    cout<<"masukan sisi kubus :";
    cin>>s;
    }
    double kubus::luas(){
           l =6*s*s;
           return l;
           }
  
    double kubus::volume(){
           v = s*s*s;
           return v;
           }
         
    void kubus::output(){
         cout<<"Luas Permukaan Kubus: "<<luas()<<endl;
         }
int main(int argc, char *argv[])
{
    kubus x;
    x.input();
    x.output();
   cout<<endl;
   system("PAUSE");
    return EXIT_SUCCESS;
}

0 komentar:

Posting Komentar