第1个回答 2010-11-15
1<<n
如此而已。
第2个回答 2017-02-06
pow(x, y)是计算x的y次方
注意,pow是库函数,必须包含#include <math.h>
第3个回答 2017-06-20
#include <math.h>
int a = 10;
int n = 10;
int b = pow(a, n);
//这表示a 的n次方
第4个回答 2010-11-15
包含头文件include<math.h>
double result =pow(2.0,n);
第5个回答 2010-11-15
power(2,n)本回答被提问者采纳