본문 바로가기
IT_tech/알고리즘

백준) 2523 별찍기13 - JAVA

by 신드로 2020. 7. 5.

 

https://www.acmicpc.net/problem/2523

 

2523번: 별 찍기 - 13

첫째 줄부터 2×N-1번째 줄까지 차례대로 별을 출력한다.

www.acmicpc.net

순차적으로 별을 찍고

다시 역순차로 출력!

package solution;

import java.util.Scanner;

public class Bakjun_2523 {
	public static void main(String[] args) {
	    Scanner sc = new Scanner(System.in);
	    int A = sc.nextInt();
	
	    String star="*";
	    int i=0;
	    
	   for( i=0;i<A;i++) {
		   System.out.println(star);
		   
		   star+="*";
	   }
	   star=star.substring(0,star.length()-2);
	   for(int j=i;j>1;j--) {
		   System.out.println(star);
		   
		   star=star.substring(0,star.length()-1);
	   }
	   
	    
	}
}

'IT_tech > 알고리즘' 카테고리의 다른 글

백준) 2446 별찍기 -JAVA  (0) 2020.07.07
프로그래머스)탑-java  (0) 2020.07.06
백준) 3053 택시기하학 - JAVA  (0) 2020.07.03
프로그래머스-전화번호 목록  (0) 2020.07.01
백준) 5543 상근날드 -JAVA  (0) 2020.07.01