//输入年份和月份判断闰年和平年和月份
String year = javax.swing.JOptionPane.showInputDialog("请输入年份");
int y = Integer.parseInt(year);
String month = javax.swing.JOptionPane.showInputDialog("请输入月份·");
int m = Integer.parseInt(month);
if (y % 4 == 0 & y % 100 != 0 | y % 400 == 0){
System.out.println(y + "年为闰年");
if (m == 2)
System.out.println(m + "月有29天");
} else System.out.println(y + "年为平年");
{
if (m == 2)
System.out.println(m + "月有28天");
else if (m <= 8 & m % 2 != 0)
System.out.println(y + "年" + m + "月有31天");
else if (m > 9 & m % 2 == 0) {
System.out.println(y + "年" + m + "月有31天");
} else {
System.out.println(y + "年" + m + "月有30天");
}
}
思路冗杂:硬是使用选择结构编出了判断平闰年及月份的代码块;
代码优化:
判断月份的天数;
if(m==1|m==3|m==5|m==7|m==8|m==10|m==12){
System.out.println(m+"月有31天");
}else if (m!=2);
System.out.println(m+"月有30天");
java实现猜数字游戏:使用math.Random()方法
for(int j=0;j<3;j++) {
String strAge = javax.swing.JOptionPane.showInputDialog("请输入一个整数");
int a = Integer.parseInt(strAge);
int b = (int) (Math.random() * 100);
int k = 2 - j;
if (a > b) {
System.out.println("你猜的数太大了");
System.out.println("你还有" + k + "次机会");
}else System.out.println("你猜的数太小了");
System.out.println("你还有" + k + "次机会");
if(a==b)
System.out.println("恭喜你第"+j+"下猜中了");
}
System.out.println("未猜中,你的猜数机会已用完");
?
?
?
?
?
|