Be a Trainer! Share your knowledge.
Home » C programming » দুইটি সংখ্যার তুলনার প্রোগ্রাম

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

#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 ();
}

9 years ago (Sep 14, 2015)

About Author (2)

Mizanur Rahman
subscriber

A ICT Learner

Trickbd Official Telegram

5 responses to “দুইটি সংখ্যার তুলনার প্রোগ্রাম”

  1. jewel3477 Contributor says:

    This program is false..
    100% ei program vul

  2. blue_coder Author says:

    ভাইয়া কবে থেইকা সি শিখসো??

  3. Refat khan Contributor says:

    MULTIPLICATION TABLE … .
    1st input- test case
    2nd- give input for multiplication table

    #include
    int main () {
    int a,b,c,j,i;
    while(scanf(“%d”,&a)==1)
    {
    c=1;
    for(i=1;i<=a;i++)
    {
    scanf("%d",&b);
    printf("Case : %d\n",c);
    for(j=1;j<=10;j++) printf("%d*%d=%d\n",b,j,b*j); c++;
    }
    }
    return 0;
    }

  4. sohelrana31 Contributor says:

    #include
    int main ()
    {
    int x,y;
    printf(“Enter the value x and y : “);
    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();
    }

  5. Totul Author says:

    বাহ অনেকদিন পর এমন একটা কোড দেখলাম যার কিছুই হয় নাই… 😛

Leave a Reply

Switch To Desktop Version