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)
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!