题解 | #2的n次方计算#
2的n次方计算
https://www.nowcoder.com/practice/35a1e8b18658411388bc1672439de1d9
#include <stdio.h> #include <math.h> int main() { int a; scanf("%d", &a); int b=pow(2,a); printf("%d\n", b); return 0; }
2的n次方计算
https://www.nowcoder.com/practice/35a1e8b18658411388bc1672439de1d9
#include <stdio.h> #include <math.h> int main() { int a; scanf("%d", &a); int b=pow(2,a); printf("%d\n", b); return 0; }
相关推荐