2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:m1 = m2 = m3 = 0n = int(input())for i in range(0,n): a = list(map(int,input().spli…… 题解列表 2023年02月06日 0 点赞 0 评论 446 浏览 评分:9.9
奥运奖牌计数 摘要:解题思路:注意事项:参考代码:// 方式一// #include<stdio.h>// int main()// {// int n,a,b,c;// scanf("%d",&n);/…… 题解列表 2022年12月27日 0 点赞 0 评论 639 浏览 评分:9.9
家人们,这个题解超简单! 摘要:解题思路:将金银铜分别输入三次即可,并先输入比了多少天即可。注意事项:不能把a,b,c的输入写在外面。参考代码:#include <bits/stdc++.h>using namespace std;…… 题解列表 2024年02月23日 0 点赞 1 评论 127 浏览 评分:9.9
编写题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n,sum1=0,sum2=0,sum3=0,d; …… 题解列表 2024年06月16日 0 点赞 0 评论 248 浏览 评分:9.9
2799:不要忘记初始化变量-C语言 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<math.h> int main() { int n; int a,b,c; a = 0…… 题解列表 2022年12月20日 0 点赞 0 评论 296 浏览 评分:9.6
奥运奖牌计数(超简单,很容易看懂) 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){ int n,a,b,c; int a1=0,b1=0,c1=0…… 题解列表 2022年11月05日 0 点赞 0 评论 803 浏览 评分:8.7
(cC语言超简单版)奥运奖牌计数 摘要:解题思路:分别计算金银铜三种的数量,这里要用到2维数组注意事项:参考代码:#include<stdio.h>int main(){ int n; int a[100][3]; int…… 题解列表 2022年11月12日 0 点赞 0 评论 317 浏览 评分:8.5
2799: 奥运奖牌计数 摘要:```cpp #include #include using namespace std; int main() { int fmax,maxs=0,a[10001],b[1000…… 题解列表 2023年02月24日 0 点赞 0 评论 239 浏览 评分:7.0
题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int a,b,c,n,sum=0,sum1=0,s…… 题解列表 2024年01月10日 0 点赞 0 评论 139 浏览 评分:6.0
编写题解 2799: 奥运奖牌计数 摘要:解题思路:sum的用法注意事项:参考代码:#include<iostream>using namespace std;int main(){ int n; cin>>n; int a[n]…… 题解列表 2023年02月23日 0 点赞 0 评论 162 浏览 评分:6.0