题解 2799: 奥运奖牌计数

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

筛选

奥运奖牌计数C解

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

奥运金牌计数(c语言)

摘要:解题思路:二维数组注意事项:二维数组的输入输出方式参考代码:#include<stdio.h>int main(){int i,j,n,b=0,c=0,d=0,sum=0;scanf("%d",&n)……

奥运奖牌计数,加油

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

2799: 奥运奖牌计数

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

2799 奥运奖牌计数

摘要:解题思路:    #include <bits/stdc++.h>    using namespace std;    int main()    {       int n,sum1=0, sum……

写题解 2799: 奥运奖牌计数

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