-
[TIL] Algorithm 17Develope/Algorithm 2020. 7. 28. 15:14
◎ 문제 11: for를 이용한 기본 활용
1부터 100까지 모두 더하는 Code를 <pass> 부분에 완성하세요. for를 사용해야 합니다.
let s = 0; //pass console.log(s);
◎ 정답
let s = 0; for(let i = 0; i <= 100; i++) { s += i; } console.log(s); // 5050
◎ 해설
- s = s + i; 로 코드를 작성할 수 있지만 더 간략하게 s += i; 로 작성하는게 좋다.
'Develope > Algorithm' 카테고리의 다른 글
[TIL] Algorithm 19 (0) 2020.07.30 [TIL] Algorithm 18 (0) 2020.07.30 [TIL] Algorithm 16 (0) 2020.07.28 [TIL] Algorithm 15 (0) 2020.07.28 [TIL] Algorithm 14 (0) 2020.07.28