Kamis, 29 Maret 2012

Ujian 10 jari

alhamdulilah lulus.....hehe
moga tambah lancar ngetik 10 jarinya...amin

refisi praktikum 2(menetukan tahun kabisat ataua bukan)

#include <cstdlib>
#include <iostream>

using namespace std;
class kabisat{
    
      friend istream& operator>>(istream&, kabisat&);
     
public:
       kabisat();//konstruktor
       int step();
private:
        int a;
        };
kabisat::kabisat(){
                   cout<<"Menghitung tahun kabisat"<<endl;
                   cout<<"ALPRO siiipppp"<<endl;}
istream& operator>>(istream& in, kabisat& d){
    cout<<"Masukan tahun: ";
    in>>d.a;
}

int kabisat::step(){
    if (a % 4==0){cout<<"Merupakan tahun kabisat";}
    else {cout<<"Bukan kabisat";}
}
          
int main()
{
    kabisat d;
    cin>>d;
    d.step();
    cout<<endl;
   
    system("PAUSE");
    return EXIT_SUCCESS;
}

Praktikum ke 2(menetukan tahun kabisat atua bukan)

#include <cstdlib>
#include <iostream>

using namespace std;
class kabisat{
      friend ostream& operator<<(ostream&, kabisat&);
      friend istream& operator>>(istream&, kabisat&);
     
public:
       kabisat();
       int input();
       int step();
private:
        int a;
        };
kabisat::kabisat(){
                   cout<<"Menghitung tahun kabisat"<<endl;
                   cout<<"ALPRO siiiiipp"<<endl;}
istream& operator>>(istream& in, kabisat& d){
    cout<<"Masukan tahun: ";
    in>>d.a;
}

int kabisat::step(){
    if (a % 4==0){cout<<"Merupakan tahun kabisat";}
    else {cout<<"Bukan kabisat";}
}
          
int main()
{
    kabisat d;
    cin>>d;
    d.step();
    cout<<endl;
   
    system("PAUSE");
    return EXIT_SUCCESS;
}

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;
}

Alpro (Meeting 2)

Today, learn about the Raptor.
which makes flowchar with raptor.
Still a bit confusing actually. Because it has not really understand about the raptor.
So it is still difficult.
But it's okay.
Because new things definitely need to learn and adapt.....*_*