[BaekJoon] 16394번 - 홍익대학교 [Java][C++]
[BaekJoon] 16394번 - 홍익대학교 [Java][C++]
1. 문제 풀이
$1,946$ 년이 개교 $0$ 주년이므로 주어진 $N$ 에서 $1,946$ 을 빼주면 된다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
import java.util.*;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int N = sc.nextInt();
System.out.println(N - 1946);
}
}
2. 풀이 [C++]
1
2
3
4
5
6
7
8
9
10
11
#include <bits/stdc++.h>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
int n;
cin >> n;
cout << n - 1946;
}
This post is licensed under CC BY 4.0 by the author.