본문 바로가기

Programming/BaekJoon

[C++] 백준 14581번 : 팬들에게 둘러싸인 홍준


https://www.acmicpc.net/problem/14581




#include <iostream>

#include <string>

using namespace std;

int main() {

string name;

cin >> name;

char em[6] = ":fan:";

for (int i = 0; i < 3; i++)

{

for (int j = 0; j < 3; j++)

{

if (i == 1 && j == 1) {

cout << ":" << name << ":";

}

else

cout << em;

}

cout << "\n";

}

}

'Programming > BaekJoon' 카테고리의 다른 글

[C++] 백준 12790번 : Mini Fantasy War  (0) 2019.05.03
[C++] 백준 12791번 : Starman  (0) 2019.05.03
[C++] 백준 14582번 : 오늘도 졌다  (0) 2019.05.03
[C++] 백준 10828번 : 스택  (0) 2019.05.02
[C++] 백준 1075번 : 나누기  (0) 2019.04.22