문제풀이 16번

박천규·2020년 12월 29일
0

자바 기초문제풀이

목록 보기
16/30

n 입력받아서 별찍기

1)
*
**
***
****
*****
	 Scanner sc = new Scanner(System.in); 
		 int a = 	sc.nextInt();
		 for(int i=0; i<a ; i++)
		 {
			 for(int j=0; j<=i ;j++ )
			 {
				 System.out.print("*");	
			 }
			 System.out.println();
		 }

2번

2)
*****
 ****
  ***
   **
    *
 Scanner sc = new Scanner(System.in); 
		 int a = 	sc.nextInt();
		 for(int i=0; i<a ; i++)
		 {
			 for(int j=0; j<a ;j++ )
			 {
				 if(i>j) System.out.print(" ");	
				 else  System.out.print("*");	
			 }
			 System.out.println();
		 }

3번

     *
    **
   ***
  ****
 *****
 
 		 Scanner sc = new Scanner(System.in); 
		 int a = 	sc.nextInt();
		 for(int i=0; i<a ; i++)
		 {
			 for(int j=0; j<a ;j++ )
			 {
				 if(i+j>=a-1) System.out.print("*");
				 else System.out.print(" ");
			 }
			 System.out.println();
		 }
 
profile
자바 공부중

0개의 댓글

관련 채용 정보