Information Technology IT – 4 Algorithms and flowcharts | e-Consult
4 Algorithms and flowcharts (1 questions)
Login to see all questions.
Click on a question to view the answer
Pseudo-code:
- START
- SET sum = 0
- FOR i = 1 TO 100
- sum = sum + i
- END FOR
- WRITE "The sum of numbers from 1 to 100 is: ", sum
- END