• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java小程序之——判断输入的某个年份是否是闰年

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

编写程序,判断给定的某个年份是否是闰年。

      闰年的判断规则如下:

     1)若某个年份能被4整除但不能被100整除,则是闰年。

     2)若某个年份能被400整除,则也是闰年。

程序一:

package exercise;

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class IsLeapYear {
public static boolean isNum(String str){
boolean isNum=true;
for(int i=0;i<str.length();i++){
//mark if the year is a number;
isNum=false;
if(str.codePointAt(i)>47&&str.codePointAt(i)<58){
isNum
=true;
}
if(isNum==false){
break;
}

}
//for

return isNum;
}

public void isHeapYear(){
int year=0;

System.out.println(
"Please input the year you want to judge:");

Scanner in
=new Scanner(System.in);
String temp
=in.next();

if(!isNum(temp)){
System.out.println(
"the year you input is not valid");
}
else{
year
=Integer.parseInt(temp);
if(year<1980||year>2050){
System.out.println(
"the year you input is not in the scale");
System.exit(
1);
}
else if((year%4==0&&year%100!=0)||year%400==0){
System.out.println(year
+" is a leap year");
}
else{
System.out.println(year
+" is not a leap year");
}
}

}
public static void main(String[] args){

new IsLeapYear().isHeapYear();

}
}

  程序二:

package exercise;

import java.util.Scanner;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class IsLeapYearReg {

public static boolean isNum(String str){
Pattern p
= Pattern.compile("[0-9]*");
Matcher isNum
= p.matcher(str);
if(isNum.matches()){
return true;
}
else{
return false;
}
}

public void isHeapYear(){
int year=0;

System.out.println(
"Please input the year you want to judge:");

Scanner in
=new Scanner(System.in);
String temp
=in.next();

if(!isNum(temp)){
System.out.println(
"the year you input is not valid");
}
else{
year
=Integer.parseInt(temp);
if(year<1980||year>2050){
System.out.println(
"the year you input is not in the scale");
System.exit(
1);
}
else if((year%4==0&&year%100!=0)||year%400==0){
System.out.println(year
+" is a leap year");
}
else{
System.out.println(year
+" is not a leap year");
}
}
}

public static void main(String[] args){
new IsLeapYearReg().isHeapYear();
}
}


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
滴滴开源小程序框架 Mpx ,致力于提高小程序开发体验发布时间:2022-07-18
下一篇:
微信小程序开发-项目结构介绍发布时间:2022-07-18
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap