ответ: писал на С++
1)
#include<iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
if(x>y) cout<<"x";
else cout<<"y";
return 0;
}
2)
if(x>y) x*=x;
else y*=y;
cout<<"x="<<x<<" y="<<y;
3)
int x,y,z;
cin>>x>>y>>z;
if(x>y && y>z) cout<<"Yes";
else cout<<"No";
ответ: писал на С++
1)
#include<iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
if(x>y) cout<<"x";
else cout<<"y";
return 0;
}
2)
#include<iostream>
using namespace std;
int main()
{
int x,y;
cin>>x>>y;
if(x>y) x*=x;
else y*=y;
cout<<"x="<<x<<" y="<<y;
return 0;
}
3)
#include<iostream>
using namespace std;
int main()
{
int x,y,z;
cin>>x>>y>>z;
if(x>y && y>z) cout<<"Yes";
else cout<<"No";
return 0;
}