哥德巴赫曾猜测 简单易懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,sum=0,m,sum1=0,sum2=0; scanf("%d",&n); …… 题解列表 2023年11月27日 0 点赞 0 评论 145 浏览 评分:0.0
最高的分数(最简单版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a,b,max=0; scanf("%d",&a); for(int i=0;i<a;…… 题解列表 2023年11月27日 0 点赞 0 评论 381 浏览 评分:0.0
3000: 交换值 摘要:```cpp #include using namespace std; int main() { int a, b; cin >> a >> b; int temp =…… 题解列表 2023年11月27日 0 点赞 0 评论 284 浏览 评分:0.0
题解 2836: 数组逆序重放 摘要: #include using namespace std; const int N = 2e6; int a[N]; int i; int m…… 题解列表 2023年11月27日 0 点赞 0 评论 214 浏览 评分:0.0
1098: 陶陶摘苹果 摘要:```cpp #include using namespace std; int h[10],a; int main(){ for( int i=1;i>h[i]; } cin>>…… 题解列表 2023年11月27日 0 点赞 0 评论 186 浏览 评分:0.0
2837: 年龄与疾病 摘要:``` #include using namespace std; int n[100000],a; double q,w,e,r; int main() { cin>>a; for…… 题解列表 2023年11月27日 0 点赞 0 评论 271 浏览 评分:0.0
(轻轻松松)宏定义练习之三角形面积 摘要:解题思路: 直接用它给的公式算起!注意事项: 要用开方!参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int …… 题解列表 2023年11月27日 0 点赞 0 评论 159 浏览 评分:0.0
查找特定的值(C语言版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,x,k; int flag=0; int arr[10001]; scanf…… 题解列表 2023年11月27日 0 点赞 0 评论 135 浏览 评分:0.0
不高兴的津津(C语言版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[10],b[10]; int sum[10]; int max=0,count=0…… 题解列表 2023年11月27日 0 点赞 0 评论 150 浏览 评分:0.0
最大值和最小值的差(C语言) 摘要:#include<stdio.h>int main(){ int a,b[10001]; int max=0,min=10000; scanf("%d",&a); for(in…… 题解列表 2023年11月27日 0 点赞 0 评论 401 浏览 评分:0.0