Notice
Recent Posts
Recent Comments
Link
목록별출력 (1)
drexqq
[Java, 자바] 별 출력하기
입력한 수만큼 하나씩 증가하는 별을 출력한다. 코드 package work0521; import java.util.Scanner; public class Work06 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("몇줄을 출력하시겠습니까 ?"); int star = sc.nextInt(); for (int i = 0; i < star; i++) { for (int j = 0; j < i+1; j++) { System.out.printf("*"); } System.out.printf("\n"); } } } 결과 몇줄을 출력하시겠습니까 ? 10 * ** *** **** *****..
공부노트/개인공부!
2020. 5. 21. 19:13