작성일 :

문제 링크

27332번 - 11 月 (November)

설명

11월의 날짜를 판별하는 간단한 구현 문제입니다.

문제의 조건에 따라 계산한 다음의 날짜가 11월이면 1 을, 그렇지 않으면 0 을 출력합니다.


Code

[ C# ]

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

      var a = int.Parse(Console.ReadLine()!);
      var b = int.Parse(Console.ReadLine()!);

      int days = a + 7 * b;

      if (days >= 1 && days <= 30) Console.WriteLine("1");
      else Console.WriteLine("0");

    }
  }
}



[ C++ ]

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

using namespace std;

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

  int a, b; cin >> a >> b;

  int days = a + 7 * b;

  if (days >= 1 && days <= 30) cout << "1\n";
  else cout << "0\n";

  return 0;
}