성적표

코딩테스트 2024. 9. 16. 21:58


#include <iostream>
#include <stdio.h>
#include <string.h>
#include <math.h>

struct Student {
    int n, mat, eng, c;
      
};

int main() {
    Student s[51];  //  51개 배열 
    int i, n, max = - 2147000000, res;
    scanf("%d", &n);
    for(i=1; i<= n; i++) {
        scanf("%d", &s[i].n);
        scanf("%d", &s[i].mat);
        scanf("%d", &s[i].eng);
        scanf("%d", &s[i].c);
    }
    for(i=1; i<=n; i++) {
        if(s[i].mat > max) {
            max = s[i].mat; 
            res = s[i].c;
        }
    }
    printf("%d\n", res);
    

return 0;
}

'코딩테스트' 카테고리의 다른 글

1부터 N까지의 M의 배수의 합  (0) 2024.09.16
1부터 N까지의 M의 배수합  (0) 2024.09.16
배열의 최소값 리턴  (0) 2024.09.16
자릿 수 출력  (0) 2024.09.16
소수 찾기  (0) 2024.09.16
블로그 이미지

wtdsoul

,