Sum of first 100 integers?
64 ビュー (過去 30 日間)
古いコメントを表示
Write a script that uses a for loop to calculate the sum of the first 100 integer numbers
0 件のコメント
採用された回答
Mischa Kim
2014 年 2 月 3 日
編集済み: Mischa Kim
2014 年 2 月 3 日
my_sum = 0;
for ii = 1:100
my_sum = my_sum + ii;
end
その他の回答 (4 件)
Roger Stafford
2014 年 2 月 3 日
編集済み: Roger Stafford
2014 年 2 月 3 日
Or you could emulate the mathematical genius, Karl Friedrich Gauss, who is said to have done it this way at the age of ten:
s = (100+1)+(99+2)+(98+3)+...+(51+50) = 50*101 = 5050
2 件のコメント
Mayur Gaikwad
2017 年 12 月 7 日
Could someone write the script for matlab mobile version for the sum of the squares of first 100 natural numbers.. !
1 件のコメント
Jan
2017 年 12 月 7 日
Yes. Simply add a "^2" in Mischa's answer.
Please do not inject a new question as an answer to an existing thread. Such thread-hijacking confuses the readers, because it is not clear anymore, to which question an answer belongs.
Because this sounds like a homework, let me encourage you to try to solve this by your own.
参考
カテゴリ
Help Center および File Exchange で Loops and Conditional Statements についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!