题解 2843: 计算2的N次方

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

筛选

2的n次方(大数版)

摘要:解题思路:注意事项:涉及高精度计算(用数组)参考代码:#include <stdio.h>int a[100000];int main(){     int k=1,n=0,i,j;     scan……

计算2的n次方

摘要:解题思路:使用数组去保存数据,这里用到的是高精度的知识注意事项:参考代码:#include<stdio.h>int main(){    int a[100000]={0};    int i;   ……

思路清晰版本,在B站学的

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

计算2的N次方

摘要:解题思路:注意事项:参考代码://两种方法,但具体本质都未变,// 方法1先整体乘2,不管是否进位#include<stdio.h>int a[100010];//数组是否初始化为0无影响,因为每次都……

计算2的N次方

摘要:解题思路:注意事项:参考代码:#include<stdio.h> int a[10000]={1},len=1;//定义全局变量  void fang(int a[])//用来进行运算  { ……

好写》好写

摘要:参考代码:#include<stdio.h> int res[50] = {0, 1}; int main() { int n; scanf("%d", &n); int add =……

2843: 计算2的N次方(pow解法)

摘要:解题思路:pow要用精度注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int i,n[100];    double sum=0;……