题解 2544: N以内累加求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,a=0; cin>>n; f…… 题解列表 2024年01月08日 0 点赞 0 评论 134 浏览 评分:0.0
题解 2000: 偶数列举 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(i…… 题解列表 2024年01月08日 0 点赞 0 评论 123 浏览 评分:0.0
题解 2544: N以内累加求和 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int sum,i,n; sum=0; …… 题解列表 2024年01月08日 0 点赞 0 评论 248 浏览 评分:9.9
2000: 偶数列举 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; for(int i…… 题解列表 2024年01月08日 0 点赞 0 评论 123 浏览 评分:0.0
题解 1764: 循环入门练习1 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,sum=0; for(a=1;a<…… 题解列表 2024年01月08日 0 点赞 0 评论 214 浏览 评分:9.9
强制转换,如果不对请纠正谢谢 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args) {…… 题解列表 2024年01月08日 0 点赞 0 评论 184 浏览 评分:0.0
题解 1764: 循环入门练习1(最简单) 摘要:解题思路:注意事项:参考代码:#include <iostream>int main(){ std::cout<<1001*500; return 0;}…… 题解列表 2024年01月08日 0 点赞 0 评论 215 浏览 评分:9.9
2544: N以内累加求和(超简单) 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,sum=0; cin>>n; …… 题解列表 2024年01月08日 0 点赞 0 评论 159 浏览 评分:0.0
题解 2777: 计算2的幂 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n; cin>>n; int m…… 题解列表 2024年01月08日 0 点赞 0 评论 160 浏览 评分:0.0
自由下落的距离计算 摘要:解题思路: 第一次路径是初始小球距离地面的距离,以后的路径都是初始距离的一半再乘2(因为弹起和落下两次距离是相同的)。注意事项: 注意审题,总路径是第N次之前的总路径,不包括第N次弹起和落…… 题解列表 2024年01月07日 0 点赞 0 评论 242 浏览 评分:9.9