JAVA 별찍기 Stars, for문 (230619)

이원건·2023년 6월 19일
0

JAVA

목록 보기
6/33
post-thumbnail

1. 아래를 찍으시오.

  • 문제
*****
*****
*****
*****
*****
  • 코드
public class PrintStars {
	public static void main(String[] args) {
		
		for(int i = 0;i < 5; i++){
			for(int j = 0 ; j < 5 ; j++)
				System.out.print("*");
			System.out.println();
		}
	}
}
  • 결과
*****
*****
*****
*****
*****

2. 아래를 찍으시오.

  • 문제
*
**
***
****
*****
  • 코드
public class PrintStars {
	public static void main(String[] args) {
		
		for(int i = 0;i < 5; i++){
			for(int j = 0 ; j <= i ; j++)
				System.out.print("*");
			System.out.println();
		}
	}
}
  • 결과
*
**
***
****
*****

3. 아래를 찍으시오.

  • 문제
*****
****
***
**
*
  • 코드
public class PrintStars {
	public static void main(String[] args) {
		
		for(int i = 0;i < 5; i++){
			for(int j = i ; j < 5 ; j++)
				System.out.print("*");
			System.out.println();
		}
	}
}
  • 결과
*****
****
***
**
*

4. 아래를 찍으시오.

  • 문제
    *
   **
  ***
 ****
*****
  • 코드
public class PrintStars {
	public static void main(String[] args) {
		
		for(int i = 0;i < 5; i++){
			for(int j = i ; j< 4 ; j++)	System.out.print(" ");
			for(int j = 0; j<=i ; j++) System.out.print("*");
			System.out.println();
		}
	}
}
  • 결과
    *
   **
  ***
 ****
*****

5. 아래를 찍으시오.

  • 문제
*****
 ****
  ***
   **
    *
  • 코드
public class PrintStars {
	public static void main(String[] args) {
		
		for(int i = 0;i < 5; i++){
			for(int j = 0; j<i ; j++) System.out.print(" ");
			for(int j = i ; j < 5 ; j++)	System.out.print("*");
			System.out.println();
		}
	}
}
  • 결과
*****
 ****
  ***
   **
    *

0개의 댓글