在c语言里a的b次方该怎么表示啊!!
发布网友
发布时间:2022-04-28 12:10
我来回答
共4个回答
热心网友
时间:2023-10-08 23:33
#include <math.h>
pow(q,n) 表示q的n次方
a的b次方就是 pow(a,b)
记得加头函数文件<math.h>
热心网友
时间:2023-10-08 23:34
#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;
}
热心网友
时间:2023-10-08 23:34
pow(double x, double y);
用这个函数
不是写的!!是系统行数
热心网友
时间:2023-10-08 23:35
#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;
}
热心网友
时间:2023-10-08 23:33
#include <math.h>
pow(q,n) 表示q的n次方
a的b次方就是 pow(a,b)
记得加头函数文件<math.h>
热心网友
时间:2023-10-08 23:34
#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;
}
热心网友
时间:2023-10-08 23:34
pow(double x, double y);
用这个函数
不是写的!!是系统行数
热心网友
时间:2023-10-08 23:35
#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;
}