answersLogoWhite

0

start

n=1,0

print n

n>=99,100

yes

end

no

n=n+2

back to print step

User Avatar

Wiki User

12y ago

Still curious? Ask our experts.

Chat with our AI personalities

JordanJordan
Looking for a career mentor? I've seen my fair share of shake-ups.
Chat with Jordan
ReneRene
Change my mind. I dare you.
Chat with Rene
LaoLao
The path is yours to walk; I am only here to hold up a mirror.
Chat with Lao

Add your answer:

Earn +20 pts
Q: Draw a flowchart of for loop of number between 1 and 100?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

How to draw Flowchart to print prime numbers from 1 to 100 using while loop in c language?

Oh, dude, drawing a flowchart for printing prime numbers from 1 to 100 using a while loop in C? That's like asking me to explain quantum physics while juggling flaming torches. But hey, you basically start with a start symbol, then draw a decision box to check if a number is prime, and loop back until you reach 100. Just remember to add some arrows and shapes, and you're good to go!


What flowchart structure allows you to write one set of instructions that operates on multiple separate sets of data?

Loop


How do you Draw a flowchart to display the highest of any 10 numbers entered?

The basic idea is as follows. Assume an array n(), of ten elements.* Set variable "highest" to the first number, n(1). * Set index "i" equal to 2. * Do the following in a loop: * If n(i) is greater than "highest", replace "highest" with n(i). * Increment i by 1. * Compare whether "i" is greater than 10. If it is, leave the loop. * Display variable "highest".


How you Draw a flow chart for the sum of even numbers within 0 20?

Oh, dude, drawing a flowchart for the sum of even numbers between 0 and 20 is like making a sandwich - you just gotta follow the steps. Start with a box labeled "Start" and draw arrows to boxes for each even number from 0 to 20. Connect those boxes to a box labeled "Sum" and voila, you've got yourself a flowchart for adding up those even numbers. It's as easy as eating pie... mmm, pie.


Draw flowchart to print odd numbers from 1 to 10?

To create a flowchart to print odd numbers from 1 to 10, you would start with a terminal or start/end symbol. Then, you would use a process symbol to initialize a variable to 1. Next, you would use a decision symbol to check if the variable is less than or equal to 10. If it is, you would use another decision symbol to check if the variable is odd. If it is odd, you would use an output symbol to print the number. Finally, you would use a process symbol to increment the variable by 2 and loop back to the decision symbol to continue the process until the variable reaches 10.