What's the sum of the first 556 multiples of 47
情報
この質問は閉じられています。 編集または回答するには再度開いてください。
古いコメントを表示
What's the sum of the first 556 multiples of 47?
1 件のコメント
Guillaume
2015 年 1 月 19 日
Looks like homework.
What is the difficulty in solving this yourself?
回答 (2 件)
Azzi Abdelmalek
2015 年 1 月 19 日
47*sum(0:555)
2 件のコメント
Kamini Sewda
2015 年 1 月 19 日
Azzi Abdelmalek
2015 年 1 月 19 日
What does that mean? how it's not working?
David Sanchez
2015 年 1 月 19 日
% sum of the first 556 multiples of 47?
the_multiples = 47*(1:556);
the_sum = sum(the_multiples);
0 件のコメント
この質問は閉じられています。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!