2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,max=0; int ar…… 题解列表 2023年11月15日 0 点赞 0 评论 247 浏览 评分:0.0
C语言,动态规划 摘要:解题思路:首先列出前几年的数据 | 年份 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 |…… | 总数 | 1 | …… 题解列表 2023年11月15日 0 点赞 0 评论 200 浏览 评分:9.9
萌新出品 1806: [编程基础]输入输出练习之第二个数字 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>> a >> b >> c; cout<<…… 题解列表 2023年11月15日 0 点赞 0 评论 518 浏览 评分:9.9
最简单易懂的代码 摘要:解题思路:由于特殊情况A到E减去5得不出结果,因此可以单独列举出来,或者写出+21注意事项:注意是给出密文求明文,因此是-5不是+5!参考代码:#include<stdio.h>int main(){…… 题解列表 2023年11月15日 0 点赞 0 评论 335 浏览 评分:9.9
一看就懂的,好吧 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<math.h>using namespace std;int main(){ in…… 题解列表 2023年11月15日 0 点赞 0 评论 209 浏览 评分:0.0
球数组的最大元素的简单方法 摘要:解题思路:参考注释注意事项:参考代码:#include<stdio.h>int main(){ int r, j[1000];//定义人数变量,定义成绩数组 int i;//定义循环条件变量 int …… 题解列表 2023年11月15日 0 点赞 0 评论 286 浏览 评分:9.9
题解 2819: 数字反转 摘要: #include using namespace std; int main() { int a, ans = 0; …… 题解列表 2023年11月15日 0 点赞 0 评论 256 浏览 评分:9.9
题解 2818: 分离整数的各个数位 摘要: #include using namespace std; int main(){ int z; cin>>z; while(z){ …… 题解列表 2023年11月15日 0 点赞 0 评论 193 浏览 评分:9.9
题解 1147: C语言训练-角谷猜想 摘要: #include using namespace std; int main(){ int a,b=0; cin>>a; while(1…… 题解列表 2023年11月15日 0 点赞 0 评论 157 浏览 评分:9.9
题解 2817: 级数求和 摘要: #include using namespace std; int main(){ int a; double b=0; cin>>a;…… 题解列表 2023年11月15日 0 点赞 0 评论 216 浏览 评分:0.0