编写一个Java程序,对于给定的年份,回答“Leap Year”(闰年)或者“Not a Leap Year”(平年)。如果一个年份能被4整除,但是不能被100整除,它是闰年;如果一个年份能被100整除…
public class LeapYear{public static void isLeapYear(int year){if(year%40&&year%100!0){System.out.println(year"年是闰年");}else if(year%4000){System.out.println(year"年是闰年");}else{System.out.println(year"年不是闰年")…
经过不断调试与运行,终于赶出了这个程序 import javax.swing.*;
public class jie {public static void main (String args[]){int y;String s(String)JOptionPane.showInputDialog(null,"请输入一个数","输入对话框",JOptionPane.PLAIN_MESSAG…
环境:
操作系统:Microsoft Windows XP Professional SP3
虚拟机:VirtualBox-4.2.6-82870-Win.exe
CeontOS:CentOS-6.0-i386-bin-DVD.iso 1.创建虚拟机
新建->填写合适名称,类型:Linux,版…