c++ 썸네일형 리스트형 [프로그래머스, C++] 수박수박수박수박수박수? #include #include using namespace std; string solution(int n) { string answer = ""; for(int i=0;i 더보기 [프로그래머스/ C++]두 정수 사이의 합 #include #include using namespace std; long long solution(int a, int b) { long long answer = 0; int min=0; int max=0; if(a 더보기 [프로그래머스/C++] 약수의 개수와 덧셈 #include #include using namespace std; int solution(int left, int right) { int answer = 0; for(int i=left; i 더보기 [프로그래머스/C++] 내적 프로그래머스/C++/내적 https://programmers.co.kr/learn/courses/30/lessons/70128?language=cpp 코딩테스트 연습 - 내적 길이가 같은 두 1차원 정수 배열 a, b가 매개변수로 주어집니다. a와 b의 내적을 return 하도록 solution 함수를 완성해주세요. 이때, a와 b의 내적은 a[0]*b[0] + a[1]*b[1] + ... + a[n-1]*b[n-1] 입니다. (n은 a, b의 programmers.co.kr #include #include using namespace std; int solution(vector a, vector b) { int answer = 0; for(int i=0;i 더보기 이전 1 다음