Computer Science, asked by sirishabhuma2004, 17 days ago

write algorithm and flowchart to find the biggest number among 3 numbers​

Answers

Answered by sijit1981
4

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)

Attachments:
Similar questions