Draw a flowchart to print sum of first 100 natural numbers.
Answer:
Flowchart to print sum of first 100 natural numbers:
Short Answer Type Questions (2 Marks each)
Last updated at April 16, 2024 by Teachoo
Answer:
Flowchart to print sum of first 100 natural numbers:
Flowchart to print sum of first 100 natural numbers Start N=1 Sum=0 Sum = Sum + N N = N + 1 If N <= 100 Print Sum Stop