answersLogoWhite

0


Best Answer

Step1- Read a,b,c.

Step2-if a>b continue step 5.

Step3- b>c then print “b is the largest " and continue step 7.

Step4- continue step 6

Step5-if a>c then print “a is the largest " then continue step7.

Step6- print “z is largest".

Step7- end.

User Avatar

Jaydatt Kokane

Lvl 2
1y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

11y ago

write an algorithem to find the largest number amongest the three numbers and draw a flowchart

This answer is:
User Avatar

User Avatar

Md Sohel

Lvl 2
2y ago

[object Object]

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Write an algorithm to find the largest number amongst three numbers and draw a flowchart?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Write algorithm and draw flowchart to find the sum of even numbers?

jgfujtf


Write a algorithm and flowchart to find largest among N numbers?

Max = 0For K = 1 to NIf Number(K) > Max then Max = Number(K)Next KPrint Max


Algorithm and flowchart of odd numbers 1 to 100?

algorithim and flow chart of odd number 1 and 50


Write an algorithm and draw a corresponding flowchart to search a number in the given list of numbers and also display its position?

please give me an algorithm and a corresponding flow chart that displays list of numbers from 1 to 20.


Develop an algorithm to display all prime numbers from 2 to 100 Give both the pseudocode version and the flowchart version Convert your pseudocode into a Java program?

Develop an algorithm to display all prime numbers from 2 to 100. Give both the pseudocode version and the flowchart version. Convert your pseudocode into a Java program.


Draw a flowchart to accept 3 numbers and display the largest number?

draw a flowchart to display the first tenth even number


Give a sample problem with the use of algorithm and flowchart symbols?

design a flowchart that will input three numbers and get their sum. If the sum is greater than 20, then print "sum>20",else print the sum.


Draw a flowchart that will determine and display the largest among the three numbers being inputted?

start input A & B if A>B print A is greatest if B>A print B is greatest stop james ola writes.....SOT.


Define flowchart and draw flowchart for GCD of two numbers?

pictorial representation of a program is called a flowchart


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


Draw a flowchart to generate odd numbers between 100?

Draw a flowchart to generate odd numbers between 100?


Write an algorithm and draw a corresponding flowchart to find the greatest number and its position among the 6 given numbers?

Algorithm Step1: Read A, B, C Step2: If A > B is True, then check whether A > C, if yes then A is greatest otherwise C is greatest Step3: If A > B is False, then check whether B > C, if yes then B is greatest otherwise C is greatest Give the Flowchart Answer