mirror of
https://github.com/renbaoshuo/202401-programming-assignments.git
synced 2024-11-23 15:48:42 +00:00
20 lines
333 B
C
20 lines
333 B
C
#include <stdio.h>
|
|
|
|
int a[7][2];
|
|
int max = 0, day = 0;
|
|
|
|
int main() {
|
|
for (int i = 0; i < 7; i++) {
|
|
scanf("%d %d", &a[i][0], &a[i][1]);
|
|
|
|
if (a[i][0] + a[i][1] > 8 && a[i][0] + a[i][1] > max) {
|
|
max = a[i][0] + a[i][1];
|
|
day = i + 1;
|
|
}
|
|
}
|
|
|
|
printf("%d\n", day);
|
|
|
|
return 0;
|
|
}
|