작성일 :

문제 링크

15272번 - Hissing Microphone

설명

"hiss" 문자열을 포함하고 있는 문자열인지 아닌지 판별하는 간단한 문제입니다.


Code

[ C# ]

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

      var s = Console.ReadLine()!;

      for (int i = 0; i < s.Length - 1; i++) {
        if (s[i] == 's' && s[i + 1] == 's') {
          Console.WriteLine("hiss");
          return ;
        }
      }

      Console.WriteLine("no hiss");

    }
  }
}



[ 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 s; cin >> s;

  for (int i = 0; i < s.length() - 1; i++) {
    if (s[i] == 's' && s[i + 1] == 's') {
      cout << "hiss\n";
      return 0;
    }
  }

  cout << "no hiss\n";

  return 0;
}