코딩테스트/프로그래머스(C++)_Level.0

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 홀짝 구분하기

문제 코드 #include using namespace std; int main(void) { int n; cin >> n; cout

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 돌리기

문제 코드 #include #include using namespace std; int main(void) { string str; cin >> str; for (const auto c : str) { cout

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 문자열 붙여서 출력하기

문제 코드 #include #include using namespace std; int main(void) { string str1, str2; cin >> str1 >> str2; cout

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 덧셈식 출력하기

문제 풀이 #include using namespace std; int main(void) { int a; int b; cin >> a >> b; cout

코딩테스트/프로그래머스(C++)_Level.0

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

문제 풀이 #include using namespace std; int main() { cout

코딩테스트/프로그래머스(C++)_Level.0

[프로그래머스] Lv.0 대소문자 바꿔서 출력하기

문제 풀이 #include #include using namespace std; int main(void) { string str; cin >> str; for (const char c : str) { cout

mane
'코딩테스트/프로그래머스(C++)_Level.0' 카테고리의 글 목록 (14 Page)