반응형
#include <string>
#include <vector>
using namespace std;
int solution(int n) {
int answer = 0;
if(n%2==0){
for(int i=0; i<=n; i+=2){
answer += i*i;
}
}
else{
for(int i=1; i<=n; i+=2){
answer += i;
}
}
return answer;
}
반응형
'프로그래머스(코딩테스트 연습)' 카테고리의 다른 글
프로그래머스/C++ flag에 따라 다른 값 반환하기 (0) | 2023.09.24 |
---|---|
프로그래머스/C++ 조건문자열 (0) | 2023.09.24 |
프로그래머스 공배수 C++ (0) | 2023.09.23 |
프로그래머스 n의 배수 C++ (0) | 2023.09.23 |
프로그래머스 두 수의 연산값 비교하기 C++ (0) | 2023.09.23 |