JS_daily_algorithm_03
質問:
私が書いたコード:
<html>
<head>
<meta charset="UTF-8" />
<title>출력결과</title>
</head>
<body>
<script>
function solution(n) {
let sum = 0;
for (i = 1; i < n + 1; i++) {
sum += i;
}
return sum;
}
console.log(solution(6));
</script>
</body>
</html>
回答:
<html>
<head>
<meta charset="UTF-8">
<title>출력결과</title>
</head>
<body>
<script>
function solution(n){
let answer=0;
for(let i=1; i<=n; i++){
answer=answer+i;
}
return answer;
}
console.log(solution(10));
</script>
</body>
</html>
Impressive Point & Learning Point
Reference
この問題について(JS_daily_algorithm_03), 我々は、より多くの情報をここで見つけました https://velog.io/@happyd1/JSdailyalgorithm03テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol