welcome
Label
- grafika (1)
- Kasus-kasus (10)
- praktikum (4)
- Refleksi (4)
- Tugas (11)
- tugas technopreneuship (2)
- Uji Kompetensi (1)
Sabtu, 14 April 2012
Jumat, 13 April 2012
Dengan menggunakan fungsi ln dan exp, buatlah fungsi untuk menghasilkan nilai xy
Gambar di bawah ini terlebih dahulu membuat dengan fungsi main:
kemudian kita membuat fungsi baru dengan nama sesuai yang di inginkan :
#silakan di coba :)
Rabu, 11 April 2012
Observations around the campus
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 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 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;
Kamis, 05 April 2012
Langganan:
Postingan (Atom)