Friday, May 3, 2019

Chef And Operators

  • Problem Description

    "Chef has just started Programming, he is in first year of Engineering. Chef is reading about Relational Operators.

    Relational Operators are operators which check relatioship between two values. Given two numerical values A and B you need to help chef in finding the relationship between them that is,


    First one is greater than second or,
    First one is less than second or,
    First and second one are equal.


    Input

    First line contains an integer T, which denotes the number of testcases. Each of the T lines contain two integers A and B.
    Output

    For each line of input produce one line of output. This line contains any one of the relational operators

    '' , '' , '='.
    Constraints
    1<=T <= 10000
    1<= A, B<= 1000000001"
  • Test Case 1

    Input (stdin)
    3

    10 20

    20 10

    10 10

    Expected Output
    <

    >

    =
  • Test Case 2

    Input (stdin)
    2

    10 -20

    10 20

    Expected Output
    >

    <
Solution


#include <stdio.h>

int main(void) {
int t,a,b,i;
scanf("%d\n",&t);
for(i=1;i<=t;i++)
{
    scanf("%d %d\n",&a,&b);
    if(a>b)
    {
        printf(">\n");
    }
    else if(a<b)
    {
        printf("<\n");
    }
    else
    {
        printf("=\n");
    }
}
return 0;
}


No comments:

Post a Comment

Parity

Problem Description Ram and Sita playing the parity game. Two types of parity are there. One is odd parity and next is even parity. Ram will...