CodeRace 2016 답안 제출 포멧입니다.
강사: 박인서
새싹: 손경환, 안지수
새싹: 손경환, 안지수
문제 2 ¶
#include <stdio.h>
int main()
{
printf("Team: 박인서 안지수 손경환\n\n");
char a, b, c, d, e, f, g, h;
while (1)
{
scanf("%c %c %c %c %c %c %c %c", &a, &b, &c, &d, &e, &f, &g, &h);
if (a == '1' && b == '1' && c == '1' && d == '1' )
{
break;
}
else
{
printf("%c %c %c %c %c %c %c %c\n", a, b, c, d, e, f, g, h);
}
}
return 0;
}










