Theo Kim 2010. 11. 13. 23:41
#include <stdio.h>

main()
{
	int kor[10] = {100, 90, 35, 60, 75, 55, 95, 80, 90, 70};
	int i;

	for( i = 0; i < 10; i++ )
	{
		printf( "%d ", kor[i] );
	}
}