Rabu, 16 Maret 2016

Menentukan Bilangan Terbesar Diantara 3 Bilangan Bulat (Kasus 3.2)

 Berikut ini saya akan berbagi code c++ untuk contoh program menentukan bilangan terbesar diantara 3 bilangan buat :
#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 luvne.com ayeey.com cicicookies.com mbepp.com kumpulanrumusnya.com.com tipscantiknya.com

0 komentar:

Posting Komentar