Gravatar
李星昊
积分:139
提交:68 / 148

Pro3777  [CSP 2022J]乘方

#include<bits/stdc++.h>
 
using namespace std;
 
int t;
int a,b,c;
 
int main() {
	freopen("csp2022pj_pow.in","r",stdin);
	freopen("csp2022pj_pow.out","w",stdout);
		cin>>a>>b;
		c=(pow(a,b));
		if(c<0) {
			cout<<-1;
		} else {
			cout<<c;
		}
		cout<<endl;
 
	return 0;

}

//很简单的一道题,用pow函数就行了


2022-11-12 20:09:18    
我有话要说
Gravatar
石页嘉
积分:5
提交:3 / 26
用pow不行,它的范围太小了,要用for循环

2024-05-23 20:13:39