[ java ] JavaFestival1 - Question2 행 개수를 입력 받아 삼각형을 출력
페이지 정보
작성자 웹지기 댓글 0건 조회 3,001회 작성일 20-12-19 00:14본문
Question 2
- 행 개수를 입력받아 다음과 같이 삼각형을 출력하시오.
import java.util.Scanner;
public class Question2 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
System.out.print("행 개수 : ");
int num=sc.nextInt();
for(int i=1; i<=num;i++) {
for(int j=0; j<i; j++) {
System.out.print("*");
}
System.out.println();
}
}
}
결과
행 개수 : 10
*
**
***
****
*****
******
*******
********
*********
**********
추천0 비추천0
댓글목록
등록된 댓글이 없습니다.