코딩테스트/프로그래머스 - LV 0

[프로그래머스] 특수문자 출력하기

웅드 2024. 1. 22. 17:13

 

  • 풀이
#include <iostream>

using namespace std;

int main(void) {
    cout<<"!@#$%^&*(\\\'\"<>?:;";
    return 0;
}
반응형