코딩테스트

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

[프로그래머스] Lv.0 a와 b 출력하기

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

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

[프로그래머스/C++] Lv.0 문자열 출력하기

문제 풀이 #include #include using namespace std; int main(void) { string str = "HelloWorld"; cin >> str; cout

코딩테스트/알고리즘

자연수의 합

#include using namespace std; int main(int argc, char** argv) { int i,a,b,sum = 0; cin >> a >> b; for(i =a; i

코딩테스트/알고리즘

1부터 N까지의 M의 배수합

#include using namespace std; int main(int argc, char** argv) { int n,m,i,sum = 0; cin >> n >> m; for(i = 1; i

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