Asked by Anonymous

Develop An Algorithm And Draw the Flowcharts To Find the Sum of Odd Numbers Between 100 And 200































Answers

Answered by Damon
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


Answered by Nadiya Nadi
start
N=N+1,OS=0
N<=200
IfN/2=1
OS=OS+N
N=N+1
Print OS
Stop
Answered by Anonymous
Write an algorithm to find the sum of odd numbers between 100 and 200
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions