문제

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

문제풀이

다음 row로 갈수록 *이 줄어든다. 그러므로 row = 5 일 때 row를 *의 개수로 쓸 수 있다.

###소스

package algo;
import java.util.Scanner;
public class Main {
     public static void main(String[] args) {         
    //      *****
    //      ****
    //      ***
    //      **
    //      *
     Scanner sc = new Scanner(System.in);
     int count = sc.nextInt();
     
     for(int i = count; i > 0; --i)
           {
                for(int col = 0; col < i; ++col)
                {
                      System.out.print("*");
                }
                System.out.print("\n");
           }
    }
}