풀이
기차 뿌뿌
코드
#include <stdio.h>
int s, m;
int main() {
for (int i = 0; i < 4; i++) {
int a, b;
scanf("%d %d", &a, &b);
s = s - a + b;
m = m > s ? m : s;
}
printf("%d", m);
return 0;
}
아무말
백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge
기차 뿌뿌
#include <stdio.h>
int s, m;
int main() {
for (int i = 0; i < 4; i++) {
int a, b;
scanf("%d %d", &a, &b);
s = s - a + b;
m = m > s ? m : s;
}
printf("%d", m);
return 0;
}
백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge
YOU MIGHT ENJOY
NEXT POST