Assalamualaikum. teman - teman yang diposting kali ini yaitu pembahasan tentang program menentukan nilai terbesar dari 2 bilangan bulat. silahkan teman - teman pahami dan cermati yaa.
reptor :
2. dev :
#include <iostream>
#include <conio.h>
/* 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 a,b;
cout<<"masukkan nilai a :";
cin>>a;
cout<<"masukkan nilai b :";
cin>>b;
if(a>b)
cout<<"nilai terbesar adalah = a"<<endl;
else if(b>a)
cout<<"nilai terbesar adalah = b"<<endl;
else
cout<<"salah masukkan"<<endl;
return 0;
}
reptor :
#include <iostream>
#include <conio.h>
/* 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 a,b;
cout<<"masukkan nilai a :";
cin>>a;
cout<<"masukkan nilai b :";
cin>>b;
if(a>b)
cout<<"nilai terbesar adalah = a"<<endl;
else if(b>a)
cout<<"nilai terbesar adalah = b"<<endl;
else
cout<<"salah masukkan"<<endl;
return 0;
}
Comments
Post a Comment