특수문자 출력하기

정경미·2023년 9월 23일

문제 설명
다음과 같이 출력하도록 코드를 작성해 주세요.

출력 예시
!@#$%^&*(\'"<>?:;


대상 : ', "
escape 문자열 : \


using System;

public class Example
{
    public static void Main()
    {   
        string result ="!@#$%^&*(\\'\"<>?:;";
        Console.Write(result);
    }
}```

0개의 댓글