class IF
{
public static void main(String[] args)
{
/*用户输入一个字符,用程序判断是否为小写字母,
如果是,请输出“您输入的字符是小写字母”。
思路:
1.先算出字符计算机中所对应的字符.
2.通过字符来判断
*/
/* A----65
Z----90
a----97
z----122
*/
int x='C';
if (x<90&&x>65)
{
System.out.println("这是大写字母");
}
else if (x<122&&x>97)
{
System.out.println("这是小写字母");
}
System.out.println(x);
}
}
我自己独立想出来的, |