题解 2799: 奥运奖牌计数

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

筛选

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

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

奥运金牌计数(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 i,n,a,b,c,d=0,e=0,g=0;   scanf("%d",&n);   for(i=……

奥运奖牌计数

摘要:解题思路:注意事项:参考代码:// 方式一// #include<stdio.h>// int main()// {//     int n,a,b,c;//     scanf("%d",&n);/……

2799: 奥运奖牌计数

摘要:解题思路:注意事项:参考代码:m1 = m2 = m3 = 0n = int(input())for i in range(0,n):    a = list(map(int,input().spli……

两种方法,简单易懂!!!!

摘要:解题思路:注意事项:数组可以不开那么大。参考代码:#include<bits/stdc++.h>using namespace std;//int a,b,c;int n,a[101][101],s,……