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
奥运奖牌计数 摘要:参考代码: ```c #include int main() { int n; scanf("%d",&n); int a[n][3]; for(int i=0;i…… 题解列表 2023年09月07日 0 点赞 0 评论 396 浏览 评分:9.9
奥运奖牌计数 摘要:解题思路:注意事项:参考代码:// 方式一// #include<stdio.h>// int main()// {// int n,a,b,c;// scanf("%d",&n);/…… 题解列表 2022年12月27日 0 点赞 0 评论 640 浏览 评分:9.9
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<bits/stdc++.h>using namespace std;//int a,b,c;int n,a[101][101],s,…… 题解列表 2023年02月22日 0 点赞 0 评论 288 浏览 评分: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: 奥运奖牌计数 摘要:解题思路:首先读入n,然后用循环读入每一天的金、银、铜牌数目,并将其累加到相应的变量中。最后输出累加后的金、银、铜牌总数以及总奖牌数。参考代码:#include <iostream>using nam…… 题解列表 2023年04月10日 0 点赞 0 评论 277 浏览 评分:9.9
题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include <iostream>using namespace std;int main(){int jinzong=0,yinzong=0,tongzong=0,…… 题解列表 2024年01月10日 1 点赞 0 评论 86 浏览 评分:9.9
家人们,这个题解超简单! 摘要:解题思路:将金银铜分别输入三次即可,并先输入比了多少天即可。注意事项:不能把a,b,c的输入写在外面。参考代码:#include <bits/stdc++.h>using namespace std;…… 题解列表 2024年02月23日 0 点赞 1 评论 127 浏览 评分:9.9
奥运奖牌计数(不用二维数组) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n; scanf("%d",&n); int gold=0; int silve…… 题解列表 2023年11月15日 0 点赞 0 评论 138 浏览 评分:9.9