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