Өөр хоорондоо тэнцүү биш өгөгдсөн 3 тооны ихийг ол.

#include <stdio.h>
#include <stdlib.h>
main()
{
int a,b,c,max;
printf("a,b,c toog oruul:");
scanf("%d\n",&a);
scanf("%d\n",&b);
scanf("%d",&c);
if(a>b || b>c) printf("ih too: %d",a);
else
if(b>a || b>c) printf("ih too: %d",b);
else
if(c>b || c>a) printf("ih too: %d",c);
return 0;
}

Comments