您的位置:首页 > 运维架构

UVa 11172 Relational Operator (water ver.)

2013-09-21 10:30 866 查看


11172 - Relational Operator

Time limit: 3.000 seconds

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=24&page=show_problem&problem=2113

Some operators checks about the relationship between two values and these operators are called relational operators. Given two numerical values your job is just to find out the relationship between them that is (i) First one is greater than the second (ii)
First one is less than the second or (iii) First and second one is equal.



Input
First line of the input file is an integer t (t<15) which denotes how many sets of inputs are there. Each of the next t lines contain two integers a and b (|a|,|b|<1000000001).



Output

For each line of input produce one line of output. This line contains any one of the relational operators “>”, “<” or “=”, which indicates the relation that is appropriate for the given two numbers.



Sample Input Output for Sample Input

3

10 20

20 10

10 10

<

>

=

完整代码:

/*0.015s*/

#include<cstdio>

int main(void)
{
	int t, a, b;
	scanf("%d", &t);
	while (t--)
	{
		scanf("%d%d", &a, &b);
		puts(a < b ? "<" : (a == b ? "=" : ">"));
	}
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: