Kasus 3.1 samapi 3.5
3.1. mengecek nilai terbesar dari dua
inputan
#include
<iostream>
#include
<string>
using
namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
float a;
float b;
raptor_prompt_variable_zzyz ="input kan
A : ";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> a;
raptor_prompt_variable_zzyz ="input kan
B : ";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> b;
if (a==b)
{
cout << "Bilangan A sama
dengan bilangan B" << endl;
}
else
{
if (a>b)
{
cout << "Bilangan Terbesar
adalah = A : " <<a<< endl;
}
else
{
cout << "Bilangan Terbesar
adalah = B : "<<b << endl;
}
}
system("PAUSE");
return 0;
}
3.2. mengecek n ilai terbesar dari tiga
inputan
#include
<iostream>
#include
<string>
using
namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
float a;
float b;
float c;
raptor_prompt_variable_zzyz ="Masukkan
bilangan pertama = ";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> a;
raptor_prompt_variable_zzyz ="Masukkan
bilangan kedua = ";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> b;
raptor_prompt_variable_zzyz ="Masukkan
bilangan ketiga = ";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> c;
if (a==b && a==c && b==a
&& b==c && c==a && c==b)
{
cout << "bilangan sama
besar" << endl; }
else
{
if (a>b && a>c)
{
cout << a<<"
Terbesar" << endl; }
else
{
if (b>a && b>c)
{
cout << b<< " Terbesar" << endl; }
else
{
cout << c<< " Terbeasr" << endl; }
}
}
system("PAUSE");
return 0;
}
3.3. mengecek akar imajiner dari suatu
persamaan kuadrat
#include
<iostream>
#include
<string>
#include
<math.h>
using
namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
float x1;
float a;
float b;
float c;
float disk;
float x2;
raptor_prompt_variable_zzyz ="Input kan
A";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> a;
raptor_prompt_variable_zzyz ="Inputkan
B";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> b;
raptor_prompt_variable_zzyz ="Inputkan
C";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> c;
disk =b*b-4*a*c;
if (disk==0)
{
x1 =-b/2*a;
x2 =x1;
}
else
{
if (disk>0)
{
x1 =-b+sqrt(disk)/2*a;
x2 =-b-sqrt(disk)/2*a;
}
else
{
cout << "Akar
imajiner" << endl; }
}
system ("PAUSE");
return 0;
}
3.4. mengecek nilai mahasiswa dengan
inputan nilai dan mengahasilkan huruf dari nilai yang telah di inputkan
#include
<iostream>
#include
<string>
using namespace
std;
int main()
{
string raptor_prompt_variable_zzyz;
float n;
raptor_prompt_variable_zzyz ="masukkan
angka = ";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> n;
if (n>0 && n<=20)
{
cout << "nilai E"
<< endl; }
else
{
if (n>20 && n<=40)
{
cout << "nilai D"
<< endl; }
else
{
if (n>40 && n<=60)
{
cout << "nilai C"
<< endl; }
else
{
if (n>60 && n<=80)
{
cout << "nilai
B" << endl; }
else
{
cout << "nilai
A" << endl; }
}
}
}
system ("PAUSE");
return 0;
}
3.5. mengecek nama hari
#include
<iostream>
#include
<string>
using
namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
float a;
raptor_prompt_variable_zzyz ="Masukkan
Angka Hari !(hanya 1-7)";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> a;
while (!(a>0 && a<8))
{
raptor_prompt_variable_zzyz ="Angka
yang anda masukkan tidak sesuai, masukkan sekali lagi(Hanya angka antara
1-7)";
cout << raptor_prompt_variable_zzyz
<< endl;
cin >> a;
}
if (a==1)
{
cout << "Hari Senin"
<< endl; }
else
{
if (a==2)
{
cout << "hari Selasa"
<< endl; }
else
{
if (a==3)
{
cout << "Hari Rabu"
<< endl; }
else
{
if (a==4)
{
cout << "hari Kamis"
<< endl; }
else
{
if (a==5)
{
cout << "Hari
Jum'at" << endl;
}
else
{
if (a==6)
{
cout << "Hari
Sabtu" << endl;
}
else
{
cout << "Hari
Minggu" << endl;
}
}
}
}
}
}
system("PAUSE");
return 0;
}
0 comments:
Post a Comment