以下为代码:
创新互联-专业网站定制、快速模板网站建设、高性价比根河网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式根河网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖根河地区。费用合理售后完善,十年实体公司更值得信赖。
import java.applet.*;
import java.awt.*;
import java.awt.event.*;
public class LeapyearTest extends Applet implements ActionListener{
Label lblResult;
Button btn;
TextField txt;
int year;
boolean leap;
public void init() {
lblResult=new Label("请输入要判断的年份");
txt=new TextField(5);
btn=new Button("判断");
add(lblResult);
add(txt);
add(btn);
btn.addActionListener(this);
}
public void actionPerformed(ActionEvent e) {
// TODO Auto-generated method stub
year=Integer.parseInt(txt.getText());
if(year%4==0;;(year%100)!=0)
{leap=true;
}
else if(year%400==0){
leap=false;
}
if(leap==true)
lblResult.setText(year+"年是闰年");
else
lblResult.setText(year+"年是平年");
txt.setText("");
}
}
扩展资料:
在windows下编译java文件、执行:
1、先创建一个txt,更改为test.java。
2、编写代码,为输出为holloword。
3、找到cmd,并进行打开cmd。
4、编译java文件,输入命令为javac test.java。
5、如果没有报错,查看当前目录下是否有class文件产生。
6、执行class文件,在命令输入java test,输出为holloword。
一、问题分析
闰年的判断规则如下:
1.若某个年份能被4整除但不能被100整除,则是闰年。
2.若某个年份能被400整除,则也是闰年。
二、根据闰年的判断规则,代码设计如下
import java.util.Scanner;
class Bissextile{
public static void main(String[] args){
System.out.printtln("请输入年份");
int year;//接收输入的年份
Scanner scanner = new Scanner(System.in);
year = scanner.nextln();
if(year0||year3000){
System.out.println("年份有误!");
}
if(year%4==0year%100!=0||year%400==0){
System.out.println(year+"是闰年");
}else{
System.out.println(year+"不是闰年");
}
}
}
扩展资料:
另外,闰年的判断还可以按照如下代码设计:
import java.util.Scanner;
class LunTan1
{
public static void main(String[] args)
{
System.out.println("请输入一个年份");
Scanner scan=new Scanner(System.in);
int year=scan.nextInt();
scan.close();
ifleapyear(year);
}
private static void ifleapyear(int year){
if (year0)
{
if (year%100==0)
{
if (year%400==0)
{
System.out.println("您输入的"+year+"年是闰年");
}
else
{
System.out.println("您输入的"+year+"年是平年");
}
}
else if (year%4==0)
{
System.out.println("您输入的"+year+"年是闰年");
}
else
{
System.out.println("您输入的"+year+"年是平年");
}
}
else
{
System.out.println("您的输入不合法,请确认后再次输入");
Scanner scan=new Scanner(System.in);
year=scan.nextInt();
scan.close();
ifleapyear(year);
}
}
}
public class Happy {
public static void main(String[] args) //主函数入口
{
int month=2; //定义int变量month,并赋值为2
char ans='Y'; //定义char变量ans,并赋值为'Y'
switch(month) //根据month的值选择执行下面哪条语句
{
case 9:
case 4:
case 6:
case 11:
System.out.println("day=30"); //month值为9、4、6、11时,将输出day=30
break;
case 2: //month值为2时,从这里开始执行
{
if(ans=='Y')
{
System.out.println("是闰年!!29天"); //如果ans是'Y',输出"是闰年!!29天"
}
else
{
System.out.println("非闰年,28天!!"); //如果ans不是'Y',将输出"非闰年,28天!!"
}
}
break;
default:
System.out.println("day=31"); //其他情况下输出"day=31"
break;
}
}
}
//由于楼主给month赋的值就是2,并且ans='Y' ,所以运行结果为:输出“是闰年!!29天”
================================================================
已经给楼主加上注释了,如果还有不明白的就到我博客留言吧 我会详细给你讲清楚的
/** 判断2009年是闰年还是平年。
*提示:
*闰年的条件是符合下面二者之一:(1)年份能被4整除,但不能被100整除;(2)能被400整除。
**/
public class Pdrp{
public static void main(String args[]){
int year=2009;
if((year%4==0year%100!=0)||year%400==0)
System.out.println("2009是闰年。");
else
System.out.println("2009是平年。");
}
}