[BOJ] C# 10173 니모를 찾아서

Algorithm 2023. 1. 12. 19:46
반응형
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace _10173
{
    class Program
    {
        static void Main(string[] args)
        {
            var sw = new StreamWriter(Console.OpenStandardOutput());
            var sr = new StreamReader(Console.OpenStandardInput());

            while (true) {
                var str = sr.ReadLine();
                if (str.Equals("EOI")) break;
                if (str.ToLower().Contains("nemo"))
                    sw.WriteLine("Found");
                else sw.WriteLine("Missing");
            }
            sw.Flush();
            sw.Close();
            sr.Close();
            
                
        }
    }
}
반응형

'Algorithm' 카테고리의 다른 글

[BOJ] 1120 문자열  (0) 2023.01.13
[BOJ] C# 2309 일곱 난쟁이  (0) 2023.01.13
[BOJ] 1181 단어정렬  (0) 2023.01.12
[BOJ] 9012 괄호  (0) 2023.01.11
[BOJ] C# 7576 토마토  (0) 2022.12.28
: