0% found this document useful (0 votes)
24 views1 page

Largest of 3 Nos

The document outlines an algorithm to determine the largest of three numbers A, B, and C. It includes a series of conditional statements to compare the numbers and print which one is greater. Additionally, a flowchart is mentioned but not provided in the text.

Uploaded by

akhilsrivatsa27
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views1 page

Largest of 3 Nos

The document outlines an algorithm to determine the largest of three numbers A, B, and C. It includes a series of conditional statements to compare the numbers and print which one is greater. Additionally, a flowchart is mentioned but not provided in the text.

Uploaded by

akhilsrivatsa27
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Largest of 3 Nos.

Algorithm:

1. Start

2. Input A,B,C

3. If (A>B) and (A>C) then print “A is greater”. Else if (B>A) and (B>C) then print “B is greater”. Else print
“C is greater”.

4. Stop Flowchart

Flowchart:

You might also like