题解 2799: 奥运奖牌计数

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

筛选

2799: 奥运奖牌计数

摘要:解题思路:输入行,每行的金牌数,相加就可以了注意事项:参考代码:……

家人们,这个题解超简单!

摘要:解题思路:将金银铜分别输入三次即可,并先输入比了多少天即可。注意事项:不能把a,b,c的输入写在外面。参考代码:#include <bits/stdc++.h>using namespace std;……

奥运奖牌计数C解

摘要:解题思路:注意事项:很简单的,一步步来就是参考代码:#include<stdio.h>int main(){    int n,i,j,a[20][3],sum1=0,sum2=0,sum3=0;  ……

写题解 2799: 奥运奖牌计数

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){   int i,j,n,sum0=0,sum1=0,sum2=0;    scanf("%d",&n);    ……

2799: 奥运奖牌计数

摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){    int n,sum1=0,sum2=0,sum3=0;  ……

java--study||O.o

摘要:参考代码:import java.util.Scanner;   public class Main {   public static void main(String[] args)   ……

题解 2799: 奥运奖牌计数

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){   int fmax,maxs=0,……

题解 2799: 奥运奖牌计数

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