Răspuns:
#include <iostream>
using namespace std;
int main()
{
int x,y,z;
cout<<" Introdu x : ";cin>>x;
cout<<" Introdu y : ";cin>>y;
cout<<" Introdu z : ";cin>>z;
if (x>7&& y>7&& z>7)
{
if (y>z)
{
cout<<" y este mai mare ca z si este egal cu "<<y;
}
else cout<<" z este mai mare ca y si este egal cu "<<z;
}
else cout<<" x incrementat : "<<++x<<"\n z decrementat : "<<--z;
return 0;
}
Explicație: