Computer Science, asked by sammu468, 5 months ago

Write an algorithm an flowchart
the biggest of 3 numbers

pls do it fast​

Answers

Answered by 9876gunjanagrawal12
1

Answer:

FlowChart to find the largest of three numbers:

Below is the C program to find the largest among the three numbers: Example 1: Using only if statements to find the largest number. printf ( "%d is the largest number." , B); if (C >= A && C >= B)

Similar questions