牧羊人nacy
pow(10,x);表示10的x次方注意需要在头文件中引入math.h例如求10的3次方:123456789101112#include <iostream> #include<stdio.h>#include<math.h>//引入math头文件using namespace std; int main(){ int x=3,a; a=pow(10,x);//计算10的3次方 printf("%d ",a); return 0;}