Asked by kiran

draw a flowchart and write the algorithm for printing the first 10 even numbers

Answers

Answered by Steve
I'm holding my flowchart up to the screen. Take a look.

the algorithm is

for n = 2 to 20 step 2
  print n
next n

or, if you don't like for loops,

i=1
n=2
NEXTI:
print n
n = n+2
i = i+1
if i <= 10 go to NEXTI
stop
Answered by ayush
yes
Answered by ayush
write an algorithm and flowchart for first 10 even number
Answered by yashwanth
sry here what is mean by NEXT I can't understand
Answered by Praise
It is specific i.e it's not written well,i don't understand it at all.I'm a first time learner
Answered by umma shaha
umma shaha
Answered by umma shaha
mlkkkkkk
There are no AI answers yet. The ability to request AI answers is coming soon!

Related Questions