c++给定整数x和整数y,输出x的y次方。题目保证不存在x=0 y=0的情况。 输入格式: 第一行两个整数:x,y(0 <= x,y <= 9)。 输出格式: 输出x的y次方。
时间: 2023-11-29 19:05:20 浏览: 136
C++格式输入输出
5星 · 资源好评率100%
C++ 代码
#include <iostream>
using namespace std;
int main()
{
int x, y;
cin >> x >> y;
int res = 1;
for (int i = 0; i < y; i++)
{
res *= x;
}
cout << res << endl;
return 0;
}
阅读全文