별찍기

     

    ***** 
    ***** 
    ***** 
    ***** 
    ***** 
    ***** 
    ***** 
    ***** 
    *****

    package work7;
    
    public class Class {
    
    	public static void main(String[] args) {
    		for(int i=0; i<3; i++) {
    			for(int j=0; j<3; j++) {
    				System.out.println("*****");
    			}
    		}
    
    	}
    
    }

     

    별찍기2

    *
    **
    ***
    ****
    *****
    ****
    ***
    **
    *

      
    package work8;
    
    public class star {
    
    	public static void main(String[] args) {
        	//방법1
    		for(int i=1; i<6; i++) {
    			for(int j=0; j<i; j++) {
    				System.out.print("*");
    			}
    			System.out.println();
    		}
    		for(int i=1; i<5; i++) {
    			for(int j=0; j<=4-i; j++) {
    				System.out.print("*");
    			}
    			System.out.println();
    		}
    	/*
    	//방법2
    	int n = 0;
    	for(int i = 0;i < 9; i++) {			
    		if(i < 5) n++;
    		else	  n--;
    		
    		for(int j = 0;j < n; j++) {				
    			System.out.print("*");
    		}			
    		System.out.println();
    	}
    	*/
    	}
    }

     

    • 네이버 블러그 공유하기
    • 네이버 밴드에 공유하기
    • 페이스북 공유하기
    • 카카오스토리 공유하기