[백준/C#(.NET) 10926 ??!

백준 온라인 저지 / 10926 ??!

https://www.acmicpc.net/problem/10926

사용언어 : C# (.NET)

알고리즘 :  구현

□ 문제 정리

  1. 문자열을 입력받는다.
  2. 입력받은 문자열에 ??! 부호를 붙여 출력한다.

□코드 작성(해답지)

using System;
using System.Collections.Generic;
using System.Linq;

namespace boj
{
    class Program
    {
        static void Main(string[] args)
        {
            //입력 받은 출력 텍스트에 ??! 붙혀서 출력
            Console.WriteLine(Console.ReadLine() + "??!");

        }
    }
}