URI Online Judge Solution 1013(The Greatest) - Solution in C





Solution in C


#include<stdio.h>
int main()
{
int a,b,c;
scanf("%d %d %d",&a,&b,&c);
if(a>b&a>c)
{
printf("%d eh o maior\n",a);
}
else if(b>c)
{
printf("%d eh o maior\n",b);
}
else
{
printf("%d eh o maior\n",c);
}
return 0;
}




~~~~~~Happy Coding~~~~~~

No comments

Powered by Blogger.