1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | // Áßø for ¹®À» ÀÌ¿ëÇÏ¿© *±âÈ£¸¦ »ç°¢Çü ¸ð¾çÀ¸·Î Ãâ·ÂÇÏ´Â ÇÁ·Î±×·¥ #include <stdio.h> int main(void) { int x, y; for(y = 0;y < 5; y++) // ¹Ù±ù ¹Ýº¹¹® { for(x = 0;x < 10; x++) // ¾ÈÂÊ ¹Ýº¹¹® printf("*"); printf("\n"); // ¾ÈÂÊ ¹Ýº¹¹®ÀÌ Á¾·áµÉ ¶§¸¶´Ù ½ÇÇà } return 0; } | cs |