작성일 :

문제 링크

27327번 - 時間 (Hour)

설명

입력으로 주어지는 x 일 동안, 총 몇 시간이 지났는지 계산하는 문제입니다.

하루는 24 시간이므로, 간단히 계산하여 총 시간을 출력합니다.


Code

[ C# ]

1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Solution {
  class Program {
    static void Main(string[] args) {

      var x = int.Parse(Console.ReadLine()!);

      var hours = 24 * x;

      Console.WriteLine(hours);

    }
  }
}



[ C++ ]

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#include <bits/stdc++.h>

using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);

  int x; cin >> x;

  int hours = 24 * x;

  cout << hours << "\n";

  return 0;
}