import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
public class Main {
public static void main(String[] args) throws IOException
{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine()); // 줄의 수
for(int i = 1; i <= N; i++)
{
for(int j = N - 1; j >= i; j--)
{
System.out.print(" ");
}
for(int j = 1; j <= i; j++)
{
System.out.print("*");
}
System.out.println();
}
}
}
다른 풀이
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
br.close();
for (int i = 1; i <= N; i++) {
for (int j = 1; j <= N - i; j++) {
System.out.print(" ");
}
for (int k = 1; k <= i; k++) {
System.out.print("*");
}
System.out.println();
}
}
}
mport java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int N = Integer.parseInt(br.readLine());
br.close();
StringBuilder sb = new StringBuilder();
for (int i = 1; i <= N; i++) {
for (int j = 1; j <= N - i; j++) {
sb.append(' ');
}
for (int k = 1; k <= i; k++) {
sb.append('*');
}
sb.append('\n');
}
System.out.print(sb);
}
}
다른 풀이는 int j도 1부터 시작해서 가독성이 더 좋다. 그리고 2번재 풀이는 StringBuilder를 써서 시간을 아꼈는데 StringBuilder도 공부해야 할 것 같다.