发布网友 发布时间:2022-04-22 07:02
共4个回答
热心网友 时间:2022-06-17 03:44
#include <math.h>
pow(q,n) 表示q的n次方
a的b次方就是 pow(a,b)
记得加头函数文件<math.h>
热心网友 时间:2022-06-17 03:44
pow(double x, double y);
用这个函数
不是写的!!是系统行数
热心网友 时间:2022-06-17 03:45
#include<stdio.h>
#include<math.h>
int
main(){
int
a,b;
scanf("%d%d",&a,&b);
b=pow(a,b);
printf("%d\n",b);
return
0;
}
热心网友 时间:2022-06-17 03:45
#include<stdio.h>
#include<math.h>
int main(){
int a,b;
scanf("%d%d",&a,&b);
b=pow(a,b);
printf("%d\n",b);
return 0;
}