2798: 整数序列的元素最大跨度值 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,max=0,min=0; …… 题解列表 2023年11月15日 0 点赞 0 评论 199 浏览 评分:0.0
2797: 最高的分数 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n,max=0; int ar…… 题解列表 2023年11月15日 0 点赞 0 评论 219 浏览 评分:0.0
萌新出品 1806: [编程基础]输入输出练习之第二个数字 摘要:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>> a >> b >> c; cout<<…… 题解列表 2023年11月15日 0 点赞 0 评论 491 浏览 评分:9.9
一看就懂的,好吧 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<math.h>using namespace std;int main(){ in…… 题解列表 2023年11月15日 0 点赞 0 评论 185 浏览 评分:0.0
题解 2819: 数字反转 摘要: #include using namespace std; int main() { int a, ans = 0; …… 题解列表 2023年11月15日 0 点赞 0 评论 243 浏览 评分:9.9
题解 2818: 分离整数的各个数位 摘要: #include using namespace std; int main(){ int z; cin>>z; while(z){ …… 题解列表 2023年11月15日 0 点赞 0 评论 172 浏览 评分:9.9
题解 1147: C语言训练-角谷猜想 摘要: #include using namespace std; int main(){ int a,b=0; cin>>a; while(1…… 题解列表 2023年11月15日 0 点赞 0 评论 136 浏览 评分:9.9
题解 2817: 级数求和 摘要: #include using namespace std; int main(){ int a; double b=0; cin>>a;…… 题解列表 2023年11月15日 0 点赞 0 评论 192 浏览 评分:0.0
计算多项式的值 摘要:##计算多项式的值 如下 ``` #include using namespace std; int main(){ double x,n,x2=1; cin>>x>>n; do…… 题解列表 2023年11月15日 0 点赞 0 评论 218 浏览 评分:0.0
1022: [编程入门]筛选N以内的素数 摘要:``` #include using namespace std; int main() { int x; cin>>x; for(int j=2;j…… 题解列表 2023年11月15日 0 点赞 0 评论 150 浏览 评分:0.0