Răspuns :
#include<iostream.h>
void main ( )
{float x,y ,max=0;
cin>>x>>y;
if(x>=y ){max=x;}
else if(x<y){max=y;}
cout<<max;
}
void main ( )
{float x,y ,max=0;
cin>>x>>y;
if(x>=y ){max=x;}
else if(x<y){max=y;}
cout<<max;
}
{int x,y;
cout<<"x="; cin>>x;
cout<<"y="; cin>>y;
if (x>y)
cout<<x<<" este mai mare";
else
cout<<y<<" este mai mare";
}
cout<<"x="; cin>>x;
cout<<"y="; cin>>y;
if (x>y)
cout<<x<<" este mai mare";
else
cout<<y<<" este mai mare";
}