코딩테스트

코딩테스트/프로그래머스(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

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

[프로그래머스] Lv.0 문자열 반복해서 출력하기

문제 풀이 #include #include using namespace std; int main() { string str; int n; cin >> str >> n; for (int i = 0; i < n; ++i) { cout

mane
'코딩테스트' 카테고리의 글 목록 (17 Page)