작성일 :

문제 링크

26767번 - Hurra!

설명

간단한 구현 문제입니다.

주어진 숫자 n 까지 1 부터 출력을 하되, Bajtynka 의 특정 규칙에 따라 출력을 해야 합니다.

출력 규칙은 다음과 같습니다.

  1. 7 로 나누어지는 수는 숫자 대신 Hurra! 를 출력
  2. 11 로 나누어지는 수는 숫자 대신 Super! 를 출력
  3. 711 모두로 나누어지는 수는 숫자 대신 Wiwat! 를 출력
  4. 이 외의 수는 숫자 그대로 출력

위 규칙에 맞추어 결과값을 출력합니다.


Code

[ C# ]

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

      var n = int.Parse(Console.ReadLine()!);
      System.Text.StringBuilder sb = new System.Text.StringBuilder();

      for (int i = 1; i <= n; i++) {
        if (i % 7 == 0 && i % 11 == 0) sb.AppendLine("Wiwat!");
        else if (i % 7 == 0) sb.AppendLine("Hurra!");
        else if (i % 11 == 0) sb.AppendLine("Super!");
        else sb.AppendLine(i.ToString());
      }

      Console.Write(sb.ToString());

    }
  }
}



[ C++ ]

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

using namespace std;

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

  int n; cin >> n;

  for (int i = 1; i <= n; i++) {
    if (i % 7 == 0 && i % 11 == 0) cout << "Wiwat!\n";
    else if (i % 7 == 0) cout << "Hurra!\n";
    else if (i % 11 == 0) cout << "Super!\n";
    else cout << i << "\n";
  }

  return 0;
}