[BaekJoon] 27327번 - 時間 (Hour) [Java][C++]
[BaekJoon] 27327번 - 時間 (Hour) [Java][C++]
1. 아이디어
하루는 24시간이므로, X일은 $X \times 24$ 시간이다.
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 x = Integer.parseInt(br.readLine());
System.out.println(x * 24);
}
}
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 x;
cin >> x;
cout << x * 24;
}
3. 디버깅
없음.
4. 참고
없음.
This post is licensed under CC BY 4.0 by the author.