题解 2777: 计算2的幂

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

编写题解 2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){    int i,n,sum=1;    scanf("%d",&n);    for(i=1;i<=n;i+……

编写题解 2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){  int n,p=0;  scanf("%d",&n);  p=pow(2,n)……

计算2的幂(超简单解答)

摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() {     int n;     scanf("%d",&n); ……

编写题解 2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){    int a,A;    scanf("%d",&a);    A=pow……

C语言-计算2的幂

摘要:解题思路:循环结构,n个2相乘注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){    int n,s=1;    scanf("%d",&……

使用for循环计算2的幂

摘要:因为懒得导入math.h库,就使用for循环写 ```c #include int main() { int n,s=1,i; scanf("%d",&n); f……

221486416456185456

摘要:解题思路:#include <bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    cout<<(int)pow(……

题解 2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a = 0; int b = 1; int i = 0; scanf("%d\n", &a); for ……

ikun崩溃代码

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ double n; scanf("%lf",&n); printf("……