[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(0);
cin.tie(0);
int n;
cin >> n;
cout << n - 1946;
}
3. 디버깅
없음.
4. 참고
없음.
This post is licensed under CC BY 4.0 by the author.