#include<iostream.h>
int main(void)
{
float x;
cout >> "Задайте число х";
cin >> x;
If ((x%2)==0)
x=x*x;
}
else
x=x*x*x;
cout << x;
return 0;
#include<iostream.h>
int main(void)
{
float x;
cout >> "Задайте число х";
cin >> x;
If ((x%2)==0)
{
x=x*x;
}
else
{
x=x*x*x;
}
cout << x;
return 0;
}