Răspuns:
#include<iostream>
using namespace std;
int main()
{
int x, E;
cout << "Introduceti pe x: ";
cin >> x;
if(x < 0)
E = -x;
else
E = x*x;
cout << "E = " << E;
return 0;
}
Explicație: