작성일 :

문제 링크

17548번 - Greetings!

설명

입력으로 주어지는 문자열에서 e 문자를 기존 개수보다 두 배만큼 증가시켜 새롭게 출력하는 문제입니다.


Code

[ C# ]

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

      var greeting = Console.ReadLine()!;

      var cntE = greeting.Count(c => c == 'e');

      Console.Write("h");
      for (int i = 0; i < 2 * cntE; i++)
        Console.Write("e");
      Console.WriteLine("y");

    }
  }
}



[ C++ ]

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

using namespace std;

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

  string greeting; cin >> greeting;

  int cntE = 0;
  for (char c : greeting)
    if (c == 'e') cntE++;

  cout << "h";
  for (int i = 0; i < 2 * cntE; i++)
    cout << "e";
  cout << "y\n";

  return 0;
}