[BaekJoon] 32951번 - AI 선도대학 [Java][C++]
[BaekJoon] 32951번 - AI 선도대학 [Java][C++]
1. 문제 풀이
$N$ 에서 $2,024$ 를 빼면 지난 햇수를 구할 수 있다.
2. 코드
1. 풀이 [Java]
1
2
3
4
5
6
7
8
9
10
import java.io.*;
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());
System.out.println(N - 2024);
}
}
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 - 2024;
}
This post is licensed under CC BY 4.0 by the author.