#30998: c語言 用struct


91119james@gmail.com (cccclakers)

學校 : 不指定學校
編號 : 185671
來源 : [218.172.61.161]
最後登入時間 :
2023-12-10 14:08:47
a130. 12015 - Google is Feeling Lucky -- UVa12015 | From: [218.172.40.239] | 發表日期 : 2022-07-01 19:42

#include<stdio.h>

struct Case{

    char str[101];
    int relative;

}ccase[10];

int main(){

    int num;
    scanf("%d", &num);

    for(int i = 1; i <= num; ++i){

        for(int j = 0; j < 10; ++j){
            scanf("%s", &ccase[j].str);
            scanf("%d", &ccase[j].relative);
        }

        int max = 0;
       
        for(int j = 0; j < 10; ++j)
            if(max < ccase[j].relative)    
                max = ccase[j].relative;

        printf("Case #%d:\n", i);
       
        for(int j = 0; j < 10; ++j)
            if(ccase[j].relative == max)
                printf("%s\n", ccase[j].str);

    }


    return 0;
}
 
ZeroJudge Forum