编写题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int n,p=0; scanf("%d",&n); p=pow(2,n)…… 题解列表 2024年11月07日 0 点赞 0 评论 92 浏览 评分:9.9
使用for循环计算2的幂 摘要:因为懒得导入math.h库,就使用for循环写 ```c #include int main() { int n,s=1,i; scanf("%d",&n); f…… 题解列表 2023年07月23日 0 点赞 0 评论 523 浏览 评分:9.9
计算2的幂(超简单解答) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int n; scanf("%d",&n); …… 题解列表 2024年08月02日 0 点赞 0 评论 232 浏览 评分:9.9
每日一道----计算2的幂 摘要:解题思路:注意事项:主要需要注意的是pow函数返回的是double类型的数值,通过强制类型转换成int类型参考代码:#include<stdio.h>#include<math.h>int main(…… 题解列表 2022年12月15日 0 点赞 0 评论 657 浏览 评分:8.7
ikun崩溃代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ double n; scanf("%lf",&n); printf("…… 题解列表 2023年01月31日 0 点赞 0 评论 166 浏览 评分:0.0
题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int a,b=0; scanf("%d&qu…… 题解列表 2025年01月25日 0 点赞 0 评论 14 浏览 评分:0.0
解法有很多,多思考进步才会大 摘要:解题思路:注意事项:参考代码: int n,s=2; scanf("%d",&n); for(int i=0;i<n-1;i++){ s = s * 2; …… 题解列表 2023年02月27日 0 点赞 0 评论 138 浏览 评分:0.0
编写题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include <math.h>int main(){ int a,A; scanf("%d",&a); A=pow…… 题解列表 2024年02月03日 0 点赞 0 评论 58 浏览 评分:0.0
2的幂 基础模式,中规中矩 摘要:解题思路:pow函数的应用注意事项:注意头文件math.h参考代码:#include<stdio.h>#include<math.h>int main(){ int n,i; scanf(…… 题解列表 2022年12月31日 0 点赞 0 评论 269 浏览 评分:0.0
题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a = 0; int b = 1; int i = 0; scanf("%d\n", &a); for …… 题解列表 2023年02月27日 0 点赞 0 评论 141 浏览 评分:0.0