Computer Science, asked by riya619, 1 year ago

write a program to input three numbers and print the largest and second largest number

Answers

Answered by Abaicha
1
Try the following approach # include <stdio.h> int main(void) { int a, b, c; int second_max; scanf( "%d%d%d", &a, &b, &c ); if ( a < b ) { if ( b < c ...
Similar questions