Ответы
Ответ дал:
0
#include <iostream>
int main()
{
float x, y;
float res = 1;
std::cin >> x >> y;
for (int i = 0; i < y; i++)
res *= x;
std::cout << res << std::endl;
}
int main()
{
float x, y;
float res = 1;
std::cin >> x >> y;
for (int i = 0; i < y; i++)
res *= x;
std::cout << res << std::endl;
}
Вас заинтересует
2 года назад
2 года назад
6 лет назад
6 лет назад
9 лет назад
9 лет назад
10 лет назад