//Find the Maximum No between Three Nos'
int i=10,o=20,k=30;if(i>o &&i>k)
{
cout<<"1st is g\n";
}
else if(o>i &&o>k)
{
cout<<"2nd is G\n";
}
else
{
cout<<"3rd is G\n";
}
//Find the Maximum No between Three Nos' int i=10,o=20,k=30; if(i>o &&i>k) { cout<<"1st is g\n";...