Draw a flowchart to find all the odd numbers from 1 to 100 and compute their sum.
Answers
Answered by
3
Answer:
step 1: start
step 2: Declare variable C of interger type
step 3: set c=0
steps 4: repeat step 4.1 to 4.3 While (C<=100)
step 4.1: if (c%2 ! =0)
step 4.2: then print c
step 4.3: c=c+1
step 5: stop
ok is right answer
Attachments:
Similar questions