안녕하세요. 오늘은 감마선을 맞을거예요(??)
https://www.acmicpc.net/problem/30402
w가 있으면 춘배,
b가 있으면 나비,
g가 있으면 영철을 출력하면 됩니다.
#include <iostream>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(false); cin.tie(NULL);
char c;
int i, j;
for (i = 0; i < 15; i++)
{
for (j = 0; j < 15; j++)
{
cin >> c;
if (c == 'w')
{
cout << "chunbae";
return 0;
}
if (c == 'b')
{
cout << "nabi";
return 0;
}
if (c == 'g')
{
cout << "yeongcheol";
return 0;
}
}
}
}
감사합니다.