Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- JS
- 파이썬
- 변수
- 백준
- 알고리즘
- java
- Python
- computed
- dynamic programming
- 자료구조
- SasS
- hash table
- vue.js
- github
- leetcode
- Algorithm
- CSS
- greedy
- scss
- 컴포넌트
- HTML
- 프로그래머스
- 코딩테스트
- JavaSceipt
- string
- array
- sorting
- 자료형
- math
- JavaScript
Archives
- Today
- Total
Posis
[프로그래머스] 짝수의 합 본문
문제 링크
https://school.programmers.co.kr/learn/courses/30/lessons/120831
문제 설명
정수 n이 주어질 때, n이하의 짝수를 모두 더한 값을 return 하도록 solution 함수를 작성해주세요.
제한사항
0 < n ≤ 1000
입출력 예
n | result |
10 | 30 |
4 | 6 |
입출력 예 설명
입출력 예 #1
- n이 10이므로 2 + 4 + 6 + 8 + 10 = 30을 return 합니다.
입출력 예 #2
- n이 4이므로 2 + 4 = 6을 return 합니다.
나의 풀이
Java
class Solution {
public int solution(int n) {
int answer = 0;
for(int i = 1; i <=n; i++) {
answer = (i%2 == 0) ? answer + i : answer;
}
return answer;
}
}
JavaScript
function solution(n) {
var answer = 0;
for(let i = 1; i <= n; i++) {
if(i%2 == 0) answer += i;
}
return answer;
}
자바와 똑같은 풀이지만 코드만 다르게 삼항 연산자와 if문으로 작성해봤습니다.
728x90
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 배열의 평균값 (0) | 2022.11.25 |
---|---|
[프로그래머스] 양꼬치 (0) | 2022.11.25 |
[프로그래머스] 두 수의 나눗셈 (0) | 2022.11.25 |
[프로그래머스] 각도기 (0) | 2022.11.24 |
[프로그래머스] 두 수의 합 (0) | 2022.11.24 |