SW Expert Academy - 파스칼의 삼각형
문제 링크
문제 입출력
1
4
#1
1
1 1
1 2 1
1 3 3 1
문제 풀이
package problem.SW;
import java.io.BufferedReader;
import java.io.FileInputStream;
import java.io.InputStreamReader;
public class SW2005_파스칼의삼각형 {
static int T, N;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
T = Integer.parseInt(br.readLine());
for (int t = 1; t <= T; t++) {
N = Integer.parseInt(br.readLine());
System.out.println("#" + t);
solve();
} // end tc
} // end main
private static void solve() {
for (int i = 0; i < N; i++) {
for (int j = 0; j <= i; j++) {
if (j == 0 || j == i) System.out.print(1 + " ");
else System.out.print(i + " ");
}
for (int j = N - i; j >= 0; j--) System.out.print(" ");
System.out.println();
}
} // end solve
}
# SWEA 파스칼의 삼각형 java # SW 파스칼의 삼각형 java # sw 파스칼의 삼각형 자바
728x90
'✏️ 𝗔𝗹𝗴𝗼𝗿𝗶𝘁𝗵𝗺 > SW Expert Academy' 카테고리의 다른 글
[SW1989] 초심자의 회문 검사 (0) | 2022.12.14 |
---|---|
[SW1767] 프로세서 연결하기 (0) | 2022.11.09 |
[SW2007] 패턴 마디의 길이 (0) | 2022.11.06 |
[SW1926] 간단한 369게임 (0) | 2022.11.05 |
[SW2382] 미생물 격리 (0) | 2022.10.09 |