Analisis :
Input : misalkan x, y dan z, semua integer
Proses : kita harus membandingkan ketiga bilangan tersebut (caranya?)
Output : bilangan terbesar
C++
#include <iostream>
#include <string>
using namespace std;
int main()
{
string raptor_prompt_variable_zzyz;
?? x;
?? y;
?? z;
raptor_prompt_variable_zzyz
="masukkan x :";
cout <<
raptor_prompt_variable_zzyz << endl;
cin >> x;
raptor_prompt_variable_zzyz
="masukkan y :";
cout <<
raptor_prompt_variable_zzyz << endl;
cin >> y;
raptor_prompt_variable_zzyz
="masukkan z :";
cout <<
raptor_prompt_variable_zzyz << endl;
cin >> z;
if (x>y && x>z)
{
cout << x << endl;
}
else
{
if (y>x && y>z)
{
cout << y << endl;
}
else
{
cout << z << endl;
}
}
Rreturn 0: