๋ฐ์ํ
import java.util.Scanner;
public class Main {
// 2439 ๋ณ ์ฐ๊ธฐ - 2
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int t = sc.nextInt();
String star = "";
for (int i=1; i<=t; i++) {
String space = "";
star += "*";
for (int j=0; j<t-i; j++) {
space += " ";
}
System.out.print(space);
System.out.println(star);
}
}
}
๋ณ์ ์ ์ธ์ ์์น์ +=๋์ ์ฐ์ฐ์์ ์์น๋ง ์ ์ ์ด์ฃผ๋ฉด ๋ฉ๋๋ค.
๋ฐ์ํ
'๐ธ Algorithm > ๐ธ ๋ฐฑ์ค BaekJoon' ์นดํ ๊ณ ๋ฆฌ์ ๋ค๋ฅธ ๊ธ
[๋ฐฑ์ค][java][10951][A+B - 4] (0) | 2023.10.09 |
---|---|
[๋ฐฑ์ค][java][10952][A+B - 5] (0) | 2023.10.09 |
[๋ฐฑ์ค][java][2438][๋ณ ์ฐ๊ธฐ - 1] (0) | 2023.10.09 |
[๋ฐฑ์ค][java][11022][A+B - 8] (1) | 2023.10.08 |
[๋ฐฑ์ค][java][11021][A+B - 7] (0) | 2023.10.08 |