标签:
任意给出两个英文字母,比较它们的大小,规定26个英文字母A,B,C.....Z依次从大到小。
3 A B D D Z C
A>B D=D Z<C
代码:
01.
#include<iostream>
02.
#include<stdio.h>
03.
using
namespace
std;
04.
int
main()
05.
{
06.
int
t;
07.
char
a,b;
08.
cin>>t;
09.
while
(t--)
10.
{
11.
cin>>a>>b;
12.
if
(a < b)
13.
cout<<a<<
">"
<<b<<endl;
14.
15.
if
(a == b)
16.
cout<<a<<
"="
<<b<<endl;
17.
if
(a > b)
18.
cout<<a<<
"<"
<<b<<endl;
19.
}
20.
return
0;
21.
}
标签:
原文地址:http://blog.csdn.net/u012701023/article/details/46043319