-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[문제] 배열에서 합계 계산하기. #11
Comments
단순 생각으로
생각됩니다만, 또 다른 방법이나 유사방법이지만 꼼수라던지 팁이 있으면 알려주세요~! |
1에서 시작해 10까지의 자연수로 이루어진 배열처럼, 연속된 수의 합계를 구한다면 const num = [1,2,3,4,5,6,7,8,9,10];
const sum = (num[0] + num[num.length-1]) * (num.length / 2); |
@live-small |
네. 상관관계를 알 수 없을 땐, 요소에 직접 접근해서 하나하나 더하는 방법밖엔 없을 거 같아요. |
질문
1 에서 시작하여 10 까지의 자연수 10개가 배열로 되어있다고 했을때, 배열 전체의 합을 구하는 방법!
일반적으로 반복문(for)를 사용할텐데, 반복문을 포함해서(혹은 사용하지 않고) 구할 수 있는 방법을 생각해봅시다.
관련 챕터
27장 배열 / 8장 제어문
참고
The text was updated successfully, but these errors were encountered: