Toggle menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

CodeRace/2016/해탈의경지: Difference between revisions

From ZeroWiki
imported>tanzaniteeve10
No edit summary
imported>tanzaniteeve10
No edit summary
Line 13: Line 13:
  }
  }
== 문제 2 ==
== 문제 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;
}
== 문제 3 ==
== 문제 3 ==
  여기에 코드를 넣어주세요
  여기에 코드를 넣어주세요

Revision as of 10:34, 20 May 2016

CodeRace 2016 답안 제출 포멧입니다.


강사: 박인서 새싹: 손경환, 안지수

문제 1

#include <stdio.h>

int main()
{
	printf("Team: 박인서 안지수 손경환");
	return 0;
}

문제 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;
}

문제 3

여기에 코드를 넣어주세요

문제 4

여기에 코드를 넣어주세요

문제 5

여기에 코드를 넣어주세요

문제 6

여기에 코드를 넣어주세요

CodeRace CodeRace/2016