#include <stdio.h>
int main() {
int x,y;
printf("Enter x & y:");
scanf("%d %d",&x,&y);
if(x>y)
{
printf("x=%d is greatest",x);
}
else if(y>x)
{
printf("y=%d is greatest",y);
}
else
{
printf("x=y=%d",x);
}
}
Can’t Read Books? Try This 5-Minute Habit Instead (It Actually Works) Hi, namaste Krishna. So, um today I'll be sharing a very good ha...
No comments:
Post a Comment