NOTICE

알파벳 출력

Date : 2010. 11. 19. 11:31 Category : Programming/PHP
<?
$str = "a";
for($i=0; $i<=25; $i++) {
	echo $str;
	++$str;
}
?>

누가 물어 봐서...-_-