12345678910111213141516171819202122232425262728293031323334353637383940414243#include void main(){ /* 2중for문 - 별(*)찍기 ***** ***** ***** ***** ***** */ int i = 0; int j = 0; // 1) 반복문 없이 그냥 출력! printf("*****\n"); printf("*****\n"); printf("*****\n"); printf("*****\n"); printf("*****\n"); printf("===============\n"); // 2) for문 1개 사용 for( i = 0; i