题解 2799: 奥运奖牌计数

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

筛选

最普通的解题方法

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

奥运奖牌计数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;  ……

题解 2799: 奥运奖牌计数

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

2799: 奥运奖牌计数

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

奥运奖牌计数,加油

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