Answer on Question#38275 – Programming - Other
FLOWCHART FOR FINDING THE SUM OF 1 TO 100 NUMBERS?
Solution:
start let Sum be 0 let index i be 1 repeat if index <= 100: Sum = Sum + index index += 1 else: break print(Sum) end
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments