题解 2777: 计算2的幂

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

筛选

2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() {     int n; ……

2的幂 基础模式,中规中矩

摘要:解题思路:pow函数的应用注意事项:注意头文件math.h参考代码:#include<stdio.h>#include<math.h>int main(){    int n,i;    scanf(……

编写题解 2777: 计算2的幂

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

编写题解 2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    long long a=1,n;    cin>>n……

ikun崩溃代码

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

题解 2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int n;    cin>>n;    int m……

编写题解 2777: 计算2的幂

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<math.h> using namespace std; int main() {     long l……

2777 计算2的幂

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){    ll n,……

编写题解 2777: 计算2的幂

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