Tugas 3.1
Ini dia hasilnya mencari bilangan terbesar antara 2 bilangan bulat dengan C++ dan Raptor.Dev C++ :
#include <iostream>
using namespace std;
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
int main(int argc, char** argv) {
int a, b;
cout<<"Bilangan pertama = ";
cin>> a;
cout<<"Bilangan kedua = ";
cin>>b;
if(a > b)
cout<< "Bilangan terbesar : " << a;
else
cout<< "Bilangan terbesar : " << b;
return 0;
}
Setelah Di kompile hasilnya akan :
Raptornya :
0 komentar:
Posting Komentar