알고리즘 사이트에서 단계별로 풀어보고있습니다..
대체 몇년만에 다시 찍어보는 별인지 ㅎㅎ;
package solution;
import java.util.Scanner;
public class star {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int input = sc.nextInt();
sc.close();
for(int i=input;i>0;i--) {
for(int q=input-i;q>0;q--) {
System.out.print(" ");
}
for(int j=0;j<i;j++) {
System.out.print("*") ;
}
System.out.println();
}
}
}
결과 -
5 -- 입력
*****
****
***
**
*
'IT_tech > 알고리즘' 카테고리의 다른 글
문자열 반복 (0) | 2019.06.16 |
---|---|
평균값 구하기 (0) | 2019.06.15 |
숫자의개수 구하기.. (0) | 2019.06.15 |
10개씩 끊어 출력하기 (0) | 2019.06.02 |
2007년 - 문제 풀이 (0) | 2019.06.02 |