알고리즘
[C++] 백준 9653번 스타워즈 로고
J3SUNG
2019. 9. 22. 19:25
728x90
스타워즈 로고를 출력하는 문제입니다.
#include <iostream>
using namespace std;
int main()
{
cout << " 8888888888 888 88888" << endl;
cout << " 88 88 88 88 88 88" << endl;
cout << " 8888 88 88 88 88888" << endl;
cout << " 88 88 888888888 88 88" << endl;
cout << "88888888 88 88 88 88 888888" << endl;
cout << endl;
cout << "88 88 88 888 88888 888888" << endl;
cout << "88 88 88 88 88 88 88 88" << endl;
cout << "88 8888 88 88 88 88888 8888" << endl;
cout << " 888 888 888888888 88 88 88" << endl;
cout << " 88 88 88 88 88 88888888" << endl;
return 0;
}