예제 입력처럼 입력하면 뒤부터 "*" 이 채워지니까 5를 입력하고 앞이 공백이니까 어떻게 활용하면 좋을까?
입력값 - 인덱스값
까지는 띄어쓰기를 넣어줬다.그렇게 한 풀이는 ,
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int count = sc.nextInt();
sc.close();
String result;
int ans;
for(int i=1; i<=count; i++) {
ans = count - i;
result = "";
for(int j=0; j<ans; j++) {
result += " ";
}
result += "*".repeat(i);
System.out.println(result);
}
}