Analysis Program:
This is a program to find the KPK or multiples of the smallest alliance between two numbers entered.
Here is the formula-rusmusnya sidah. First value = 0 because later will be added in search-and add the rest of the quotient between the two numbers that fed the fruit earlier.
Agoritma :
1. Inputkan 2 angka yang akan di cari KPKnya
2. nilai=0
3. for (int z=1; z<=masuk.b; z++)
4. masuk.nilai=masuk.nilai+masuk.a;
5. if (masuk.nilai%masuk.b==0)
6. Kembalikan nilai return
7. Hasil
[sourcecode language="css"]
#include <iostream.h>
#include <conio.h>
class kpk {
friend istream& operator>>(istream&, kpk&);
public :
kpk ();
private:
int a,b,nilai;
};
kpk::kpk() { cout<<"Menghitung KPK"<<endl; }
istream& operator>>(istream& in, kpk& masuk) {
masuk.nilai=0;
cout<<"Masukkan A: "; in>>masuk.a;
cout<<"Masukkan B: "; in>>masuk.b;
for (int z=1; z<=masuk.b; z++) {
masuk.nilai=masuk.nilai+masuk.a;
if (masuk.nilai%masuk.b==0) {
cout<<"KPK dari "<< masuk.a << " dan "<< masuk.b <<" adalah "<< masuk.nilai <<endl;
return in;
}
}
}
main () {
kpk X;
cin >> X;
getch ();
}
[/sourcecode]
Friday, 15 April 2011
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Nemu artikel bagus nih tentang agama. Gak ada salahnya saya posting, apalagi sebelum bulan ramadhan ini. TAKHALLI sesungguhnya berunt...
-
#include <cstdlib> #include <iostream> using namespace std; int floor(double x){ int a; ...
-
KATA PENGANTAR
Blog Archive
-
▼
2011
(95)
-
▼
Apr
(19)
- Menentukan Bilangan Prima
- Membuat Kalkulator sederhana
- Menghitung Deret 1-1/2+1/3-1/4+..+1/n
- Merubah Nilai ke Huruf
- Specifies the Day of the input numbers
- Algoritma dan Program menentukan Tahun Kabisat
- Algoritma dan Program Mencari luas Lingkaran dan v...
- Contoh Form dan Frame diHTML
- Mencari KPK c++
- Menentukan tahun Kabisat ( Jeliot )
- Menentukan FPB
- Program Sederhana menentukan angka habis di bagi 3...
- Menentukan Persamaan Kuadrat (Akar Imajiner)
- Membuat tabel dan hyperlink di HTML
- PILIHAN SULIT
- Mencari Luas Lingkaran dan Volum Bola ( versi Jeli...
- Netbook Saya
- Program C++ Mengisi BBM
- Kiat Berbisnis Dengan Keamanan Sistem Handal Melal...
-
▼
Apr
(19)
|
[close]
Powered by Blogger.
0 komentar:
Post a Comment