#include
#include
using namespace std;
int main()
{
setlocale(LC_ALL, "Russian");
double x,y,z;
cout << "Введите 3 числа через пробел: ";<br> cin >> x >> y >> z;
if (x<0)<br> {
x=pow(x,2);
}
else if (x>0)
{
x=pow(x,3);
}
if (y<0)<br> {
y=pow(y,2);
}
else if (y>0)
{
y=pow(y,3);
}
if (z<0)<br> {
z=pow(z,2);
}
else if (z>0)
{
z=pow(z,3);
}
cout << "Вывод: " << x << " " << y << " " << z << endl;<br> return 0;
}