C++题解
2024-07-26 20:14:37
发布于:四川
9阅读
0回复
0点赞
AC题解↓↓↓
#include <iostream>
#include <vector>
using namespace std;
int main() {
long long n, m, ans = 1;
cin >> n >> m;
for (int i = 1; i <= m; ++i) {
ans *= n;
if (ans > 1000000000) {
cout << -1 << endl;
ans = 0;
return 0;
}
}
cout << ans << endl;
return 0;
}
全部评论 2
真AC!!
2024-07-26 来自 四川
1Wow
2024-07-26 来自 四川
0
有帮助,赞一个