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

What else can I help you with?

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!


How can we draw Flowchart showing product of first ten odd numbers?

To create a flowchart for calculating the product of the first ten odd numbers, begin with a start symbol, then initialize a variable for the product and a counter at 1. Use a loop structure to multiply the current product by the odd number (which can be calculated as 2n - 1 where n is the counter) and increment the counter until it reaches 10. Finally, display the product and use an end symbol to conclude the process. This flowchart visually represents the steps and decisions involved in the calculation.


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.

Related Questions

Write an algorithm or draw a flowchart to display numbers from 100 down to 10?

n=100 loop until n = 9 print n n = n -1 end loop


How you can apply a loop in the flowchart?

Drawing an arrow.


Do while loop flowchart?

do <statement> { while (Boolean expression); }


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!


Example of flowchart of while loop in c plus plus?

kk


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.


When Draw a flow chart of table 2?

in loop when draw a flow chart of table 2


How do you calculate loop length?

the multiplication of the number of iterations with the number of statements in that loop is equal to loop length.


What is the difference between for-loop container and foreach-loop container in ssis?

foreach loop executes a predetermined number of times eg. list of items, rows in a table, etc. a for loop executes until a certain condition is met


What is the time complexity of using a while loop inside a for loop?

The time complexity of using a while loop inside a for loop is O(nm), where n is the number of iterations of the for loop and m is the number of iterations of the while loop.