2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cmath> using namespace std; int main() { int n; …… 题解列表 2023年11月01日 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 评论 262 浏览 评分:0.0
编写题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int i,n,sum=1; scanf("%d",&n); for(i=1;i<=n;i+…… 题解列表 2024年12月05日 0 点赞 0 评论 92 浏览 评分:0.0
编写题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ long long a=1,n; cin>>n…… 题解列表 2024年02月23日 0 点赞 0 评论 80 浏览 评分:0.0
ikun崩溃代码 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ double n; scanf("%lf",&n); printf("…… 题解列表 2023年01月31日 0 点赞 0 评论 156 浏览 评分:0.0
题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; int m…… 题解列表 2024年01月08日 0 点赞 0 评论 59 浏览 评分: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 评论 129 浏览 评分:0.0
编写题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<math.h> using namespace std; int main() { long l…… 题解列表 2022年09月02日 0 点赞 0 评论 252 浏览 评分:0.0
2777 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ ll n,…… 题解列表 2024年07月17日 0 点赞 0 评论 42 浏览 评分: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 评论 52 浏览 评分:0.0