• Round positive (1, 2, 3, 4, 5, ...)
• Zero: 0
• Round Negative (..., -5, -4, -3, -2, -1)
.Algorithm max
{read three integers, find the largest number among three of these numbers}
Declaration :
x, y, z : integer
maks : integer
Description :
read (x,y,z);
maks ← x
if ( y > maks) then maks ← y end if
if (z > maks) then maks ← z end if
write (‘Bilangan terbesar adalah ; maks’)
Program :
# include (*iostream.h)
main (){
int x, y, z;
cout<<”Bilangan pertama : “; cin>>x;
cout<<”Bilangan kedua : “; cin>>y;
cout<<”Bilangan ketiga : “; cin>>z;
if(y>x){
cout<<”Bilangan terbesar : “<
Cout<<”Bilangan terbesar : “<
}else{
Cout<<”Bilangan terbesar : “<
}
}
return 0;
}
Tidak ada komentar:
Posting Komentar