latest Post

Programs seek the greatest value and the smallest with C++


Berikut contoh program mencari nilai terbesar dan terkecil dengan menggunakan Dev-C++

#include <iostream>
using namespace std;

int main()
{
   int terbesar,i;
   float a[5];
  
   for(i=0;i<5;i++){
  cout << "masukkan bilangan ke "<< i<< " : ";
  cin >> a[i];}
   
   terbesar = a[0];
    for (i=1;i<5;i++){
       if (terbesar <  a [i])
            terbesar = a[i];
    }

    cout <<"Nilai Terbesar adalah : "<<terbesar;

    return 0;
}






#include <iostream>
using namespace std;

int main()
{
 int a,b;
 cout<<"Masukkan bilangan pertama: ";
 cin>>a;
 cout<<"Masukkan bilangan kedua  : ";
 cin>>b;
 cout<<endl;
 
 cout<<"Bilangan terbesar : ";
{
 if (a>b)
  cout<<a;
 else
 cout<< b;
}
cout<<endl;
cout<<"Bilangan terkecil : ";
{
 if (a<b)
  cout<<a;
 
 else
 cout<<b;
}
return 0; 
}





About Unknown

Unknown
Recommended Posts × +

0 comments:

Post a Comment