welcome

Rabu, 11 April 2012

Menghitung jarak antara dua titik A()


flowchart faktorial dengan masukkan "n"

# silakan di coba yaaah :)

flowchart untuk mencetak angka 1-n


Observations around the campus

Hii friends, this time we will show the results of observations of our group. For example, we take the example of looping up the stairs to class.
Here is the sequence:
1. Example that we want to go the floor is the floor 3
2. We are on the first floor
3. Then we climbed the stairs level by level
4. After reaching the second floor do the same to get to the third floor that is level by level.
5. Of this increase is that we step or level, the higher we climbed the ladder closer to the class that we are headed.
6. And the reduced distance from the incident is that we are headed, which is getting closer.

flowchart untuk menampilkan titik tengah

# silakan di coba yaaah :)

flowchart untuk menghitung volume dan permukaan kubus

Di bawah ini adalah program dari flowchart di atas :


#include <cstdlib>
#include <iostream>

using namespace std;
class hitung{
      friend istream& operator>>(istream&, hitung&);
      friend ostream& operator<<(ostream&, hitung&);
public:
       hitung();
       void proses();
private:
        double s,v,Lp;
        };
hitung::hitung(){
                 cout<<"masukkan volume"<<endl;
                 cout<<"masukkan luas permukaan"<<endl;
                 }
void hitung::proses(){
     v=s*s*s;
     Lp=6*s*s;
     }
istream& operator>>(istream& in,hitung& x){
         cout<<"maukkan sisi kubus=";
         in>>x.s;
         }
ostream& operator<<(ostream& out,hitung& z){
         out<<"volume=";
         out<<z.v;
         out<<"luas permukaan =";
         out<<z.Lp;
         }
int main(int argc, char *argv[])
{
    hitung a;
    cin>>a;
    a.proses();
    cout<<a<<endl;
    system("PAUSE");
    return EXIT_SUCCESS;
}

# silakan di coba :)

Senin, 09 April 2012

flowchart menentukan bilangan perpangkatan jika x bil bulat(pangkat) y bil real

dalam algoritma ini memakai fungsi rekursif :

main:
perpangkatan :


flowchart yang menentukan apakah bangunan persegi atau persegi panjang


Flowchart di atas memakai program Class , di bawah ini adalah program classnya:
#include <iostream>
#include <string>
istream& operator>>(istream& in, bangun& masukan){
         cout<<"Masukan a = ";
         in>>masukan.a;
         cout<<"Masukan b = ";
         in>>masukan.b;  
         }
void bangun::menentukan(){
     if (a==b)
        cout<<"Bangun tersebut adalah Persegi"<<endl;
     else
        cout<<"Bangun tersebut adalah Persegi Panjang"<<endl;
        }

main()
{
   bangun X;
   cin>>X;
   X.menentukan();
  
   system ("Pause");
   return 0;
}
#include <string>

using namespace std;

class bangun {
      friend istream& operator>>(istream&, bangun&);
      public:
             void menentukan();
      private:
              int a,b;
              };

system ("pause");
return 0;

Flowchart untuk menghitung akar2 perssamaan kuadrat