프로그래머스 120831 짝수의 합

Jmnote (토론 | 기여)님의 2023년 12월 1일 (금) 21:12 판
(차이) ← 이전 판 | 최신판 (차이) | 다음 판 → (차이)

1 개요[ | ]

프로그래머스 120831 짝수의 합

2 C++[ | ]

#include <string>
#include <vector>

using namespace std;

int solution(int n) {
    int answer = 0;
    for(int i=2; i<=n; i+=2) {
        answer += i;
    }
    return answer;
}
#include <string>
#include <vector>

using namespace std;

int solution(int n) {
    return (n/2)*(n/2+1);
}