2的n次方(大数版) 摘要:解题思路:注意事项:涉及高精度计算(用数组)参考代码:#include <stdio.h>int a[100000];int main(){ int k=1,n=0,i,j; scan…… 题解列表 2022年11月09日 1 点赞 2 评论 561 浏览 评分:8.0
计算2的n次方 摘要:解题思路:使用数组去保存数据,这里用到的是高精度的知识注意事项:参考代码:#include<stdio.h>int main(){ int a[100000]={0}; int i; …… 题解列表 2022年12月12日 0 点赞 4 评论 347 浏览 评分:7.3
思路清晰版本,在B站学的 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,s; scanf("%d",&n); int i,j,len=1,k,a[1…… 题解列表 2023年02月17日 0 点赞 0 评论 298 浏览 评分:9.9
计算2的N次方 摘要:解题思路:注意事项:参考代码://两种方法,但具体本质都未变,// 方法1先整体乘2,不管是否进位#include<stdio.h>int a[100010];//数组是否初始化为0无影响,因为每次都…… 题解列表 2023年03月18日 0 点赞 3 评论 139 浏览 评分:0.0
计算2的N次方(使用pow(),byd,注意提示说的高精度,要用double,研究下幂函数的算法) 摘要:参考代码: ```c #include #include int main() { long double n; scanf("%llf",&n); long double a=…… 题解列表 2023年09月17日 0 点赞 0 评论 144 浏览 评分:0.0
计算2的N次方 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int a[10000]={1},len=1;//定义全局变量 void fang(int a[])//用来进行运算 { …… 题解列表 2023年12月13日 0 点赞 0 评论 141 浏览 评分:0.0
好写》好写 摘要:参考代码:#include<stdio.h> int res[50] = {0, 1}; int main() { int n; scanf("%d", &n); int add =…… 题解列表 2024年01月17日 0 点赞 0 评论 318 浏览 评分:9.9
2843: 计算2的N次方 (题目信息有误,某个测试点的N=0,解题N≥0) 摘要:倒数第3个测试点可能是N=0,所以需要考虑N=0的情况。 ```c #include #include int main() { int a[100]={1},s[1…… 题解列表 2024年04月27日 1 点赞 1 评论 111 浏览 评分:10.0
2843: 计算2的N次方(pow解法) 摘要:解题思路:pow要用精度注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i,n[100]; double sum=0;…… 题解列表 2024年10月26日 0 点赞 0 评论 117 浏览 评分:9.9
容易写到的直接解法pow()解释,代码逻辑非常简单 摘要:解题思路:直接pow( )注意事项:long long int 的最大值:9223372036854775807double 最大值:1.8 乘以 10 的308 次方2的一百次方等于12676506…… 题解列表 2024年11月11日 0 点赞 0 评论 68 浏览 评分:0.0