maybe something like this:
n = 101
sum = 101
1 if n = 199 quit
n = n+2
sum = sum + n
go back to 1
quit ---> print the sum and end
Develop An Algorithm And Draw the Flowcharts To Find the Sum of Odd Numbers Between 100 And 200
3 answers
start
N=N+1,OS=0
N<=200
IfN/2=1
OS=OS+N
N=N+1
Print OS
Stop
N=N+1,OS=0
N<=200
IfN/2=1
OS=OS+N
N=N+1
Print OS
Stop
Write an algorithm to find the sum of odd numbers between 100 and 200