0
已解决
张铭睿
中级光能
中级光能
题目链接: 酷町堂:7393
7393 函数求次方
经验值:100 时间限制:1000毫秒 内存限制:128MB
题目描述 De**ion
给出整数a和b,请使用函数求a的b次方的值
输入描述 Input De**ion
输入为两个整数a和b,中间用空格分隔
输出描述 Output De**ion
输出为一个整数,即为a的b次方的结果
样例输入 Sample Input
2 3
样例输出 Sample Output
8
数据范围及提示 Data Size & Hint
a<=20, b<=10
0分代码
#include<iostream>
#include<cmath>
#include<iomanip>
using namespace std;
int a,b;
int main(){
cin>>a>>b;
cout<<pow(a,b);
return 0;
}