Computer Science, asked by ivanteddy22, 6 months ago

write an algorithm and draw a flowchart to calculate the sum of the first 10n natural numbers starting from 1

Answers

Answered by chandaniraysinighani
2

There’s a bit correction in the flowchart, there will be “Display s” instead of “Display x”

Hope you understood!

___________

thanks

Attachments:
Answered by goldenwind
0

sum = 0

while sum <= 9:

sum = sum + 1

print(sum)

—————————————————————

if my answer helped you, do mark it as brainliest, thanks!

Similar questions