题解 2799: 奥运奖牌计数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

python 2799: 奥运奖牌计数

摘要:参考代码:n = int(input()) arr = [0,0,0] for _ in range(n):     str = list(map(int, input().split())) ……

题解 2799: 奥运奖牌计数

摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){    int a,b,c,n,sum=0,sum1=0,s……

很简单 请各位指正

摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){   int i,n,a,b,c,d=0,e=0,g=0;   scanf("%d",&n);   for(i=……

2799: 奥运奖牌计数

摘要:```cpp #include #include using namespace std; int main() { int fmax,maxs=0,a[10001],b[1000……

(cC语言超简单版)奥运奖牌计数

摘要:解题思路:分别计算金银铜三种的数量,这里要用到2维数组注意事项:参考代码:#include<stdio.h>int main(){    int n;    int a[100][3];    int……