import java.util.Scanner;


public class StarDot_For_Back {


public static void main(String[] args) {

// TODO Auto-generated method stub


Scanner firstNum = new Scanner (System.in);

int k = firstNum.nextInt();

for(int i = k; i > 0 ; i--) {

for(int j = i; j<=i && j>0; j--) {

System.out.print("*");

}

System.out.println();

}

}


}



블로그 이미지

irostub

iro의 잡화상점

,