代码中没有<=x<=这种格式,只可以用&&形式
判断是否是闰年:闰年
class Leapyear{
public static void main(String[] args){
int year=2014;
if ((year % 4 == 0 && year % 100 != 0) || ( year % 400 ==0))
{
System.out.println( year + "年是闰年" );
} else {
System.out.println( year + "年不是闰年" );
}
}
}
判断是否是英文字母:每个字母对应的都是确定的SCAII编码,所以不论是输入数字还是英文本身,都是可以的。
class English{
public static void main (String [] args) {
char f ='a';
if ( f > 64 && f < 91 ){
System.out.println(f + "是英文字母");
} else if ( f > 96 && f < 123){
System.out.println(f + "是英文字母"); }
else {
System.out.println(f+"不是英文字母");
}
}
}//英文中是使用ACSII码值。
图片包含两个的效果