#include <iostream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
int main(int argc, char** argv) {
int x, y, z;
cout<<"Masukkan Nilai x :";
cin>>x;
cout<<"Masukkan nilai y :";
cin>>y;
cout<<"Masukkan Nilai z :";
cin>>z;
if ( x>y && x>z)
cout<<"Bilangan terbesar adalah = x";
else if( y>x && y>z)
cout<<" Bilangan terbesar adalah = y";
else if (z>x && z>y)
cout<<"Bilangan terbesar adalah = z";
else
cout<<"Ketinganya Sama";
return 0;
}
Untuk flowchartnya bisa dilihat di blog teman saya KLIK DISINI
SELAMAT MENCOBA
0 komentar:
Posting Komentar