Codeup Q.1805 C언어
프로그래밍/C,C++·2022. 12. 10.
소스코드 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 #include #include #define SIZE 100 struct Machine { int num; long gas; }; int main() { int n = 0; scanf("%d", &n); struct Machine machine[SIZE]; struct Machine tmp; for (int i = 0; i