Q. 정수 n이 주어질 때, n이하의 짝수를 모두 더한 값을 return 하도록 solution 함수를 작성해주세요.
(조건 : 0 < n ≤ 1000)
더보기
#include <stdio.h>
#include <stdbool.h>
#include <stdlib.h>
int solution(int n) {
int answer = 0;
return answer;
}
A.
더보기
#include <stdlib.h>
int solution(int n) {
int answer = 0;
int i;
for(i=0;i<=n;i+=2)
answer += i;
return answer;
}
'Android 앱개발 공부 > 알고리즘 코드카타(Algorithm Code Kata)' 카테고리의 다른 글
나머지가 1이 되는 수 찾기 (0) | 2024.06.11 |
---|---|
각도기 (0) | 2024.04.16 |
두 수의 나눗셈 (0) | 2024.04.16 |
두 수의 합 (0) | 2024.04.16 |
숫자 비교하기 (0) | 2024.04.16 |