프로그래머스 120831 짝수의 합

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);
}