Site icon Trickbd.com

দুইটি সংখ্যার তুলনার প্রোগ্রাম

Unnamed

#include

#include
main ()
{
int x,y;
printf ( “please enter the value:”);
scanf ( “%d %d”, &x, &y);
if (x> y)
printf (“The value of x is %d grater than %d small”, x, y);
else
printf(“The value of y is %d grater than %d “, y, x);
getch ();
}
Exit mobile version