Info
This question is closed. Reopen it to edit or answer.
What's the sum of the first 556 multiples of 47
1 view (last 30 days)
Show older comments
What's the sum of the first 556 multiples of 47?
1 Comment
Answers (2)
David Sanchez
on 19 Jan 2015
% sum of the first 556 multiples of 47?
the_multiples = 47*(1:556);
the_sum = sum(the_multiples);
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!