From 3a1ca87a98d6c8517fdb02a41b603068fdde4d9a Mon Sep 17 00:00:00 2001 From: songyc macbook Date: Mon, 20 Apr 2026 21:50:20 +0900 Subject: [PATCH] baekjoon 20260420 --- code_study/Baekjoon/c/10170.c | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 code_study/Baekjoon/c/10170.c diff --git a/code_study/Baekjoon/c/10170.c b/code_study/Baekjoon/c/10170.c new file mode 100644 index 0000000..c978f87 --- /dev/null +++ b/code_study/Baekjoon/c/10170.c @@ -0,0 +1,6 @@ +#include + +int main() { + printf("NFC West W L T\n-----------------------\nSeattle 13 3 0\nSan Francisco 12 4 0\nArizona 10 6 0\nSt. Louis 7 9 0\n\nNFC North W L T\n-----------------------\nGreen Bay 8 7 1\nChicago 8 8 0\nDetroit 7 9 0\nMinnesota 5 10 1\n"); + return 0; +} \ No newline at end of file