-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path10170.cpp
More file actions
25 lines (22 loc) · 706 Bytes
/
10170.cpp
File metadata and controls
25 lines (22 loc) · 706 Bytes
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
// 10170. NFC West vs North
// 2020.10.11
// 구현
#include<iostream>
using namespace std;
int main()
{
cout << "NFC West W L T" << endl;
cout << "-----------------------" << endl;
cout << "Seattle 13 3 0" << endl;
cout << "San Francisco 12 4 0" << endl;
cout << "Arizona 10 6 0" << endl;
cout << "St. Louis 7 9 0" << endl;
cout << endl;
cout << "NFC North W L T" << endl;
cout << "-----------------------" << endl;
cout << "Green Bay 8 7 1" << endl;
cout << "Chicago 8 8 0" << endl;
cout << "Detroit 7 9 0" << endl;
cout << "Minnesota 5 10 1" << endl;
return 0;
}