별찍기 5번 출력할 줄 수: 5 * *** ***** ******* ********* 더보기 import java.util.Scanner; public class Star5 { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); System.out.println("별찍기 5번"); System.out.print("출력할 줄 수: "); int n = scanner.nextInt(); for (int i = 1; i i; j--) { star += " "; } //별을 담당하는 k for 문 //5번의 별의 갯수는 2 * i - 1개 만큼의 별이 각 줄에 들어가게 된다. for (int k = 0; k < i ..
C