728x90
오른쪽의 출력에 있는 글을 출력하면 됩니다.
#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;
}
'알고리즘' 카테고리의 다른 글
[C++] 백준 10926번 ??! (0) | 2019.09.22 |
---|---|
[C++] 백준 9654번 나부 함대 데이터 (0) | 2019.09.22 |
[C++] 백준 5339번 콜센터 (0) | 2019.09.22 |
[C++] 백준 9653번 스타워즈 로고 (0) | 2019.09.22 |
[C++] 백준 5338번 마이크로소프트 로고 (0) | 2019.09.22 |