004. 연산자 개념 배우기004. 연산자 개념 배우기

Posted at 2010. 11. 12. 01:02 | Posted in Computer/초보자를 위한 C 언어 300제
#include <stdio.h>

main()
{
	int x;
	int y;

	x = 10;

	y = x - 5;

	if( x > y )
	{
		printf("x의 값이 y보다 큽니다.");
	}
	else
	{
		printf("x의 값이 y보다 작거나 같습니다.");
	}
}
//