使用 DateFormat 写的星座查询 Java 小程序

关键词:DateFormat、getTime()

使用 DateFormat 写的星座查询 Java 小程序
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Scanner;

public class demo {    public static void main(String[] args) throws ParseException {            Scanner sc = new Scanner(System.in);
            System.out.print(" 请输入查询日期 ( 例“2-3”即 2 月 3 日):");
            String input = "2000-" + sc.next();     // 输入查询,之所以实 2000 因为其是闰年,2 月有 29 号
            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
            long birth = sdf.parse(input).getTime();    // 解析为 Date 并获取时间戳
            if (birth >= getTimer("2000-03-21") && birth <= getTimer("2000-04-19")) {                System.out.println(" 白羊座 ");
            } else if (birth >= getTimer("2000-04-20") && birth <= getTimer("2000-05-20")) {                System.out.println(" 金牛座 ");
            } else if (birth >= getTimer("2000-05-21") && birth <= getTimer("2000-06-20")) {                System.out.println(" 双子座 ");
            } else if (birth >= getTimer("2000-06-21") && birth <= getTimer("2000-07-21")) {                System.out.println(" 巨蟹座 ");
            } else if (birth >= getTimer("2000-07-22") && birth <= getTimer("2000-08-22")) {                System.out.println(" 狮子座 ");
            } else if (birth >= getTimer("2000-08-23") && birth <= getTimer("2000-09-22")) {                System.out.println(" 处女座 ");
            } else if (birth >= getTimer("2000-09-23") && birth <= getTimer("2000-10-22")) {                System.out.println(" 天秤座 ");
            } else if (birth >= getTimer("2000-10-23") && birth <= getTimer("2000-11-21")) {                System.out.println(" 天蝎座 ");
            } else if (birth >= getTimer("2000-11-22") && birth <= getTimer("2000-12-21")) {                System.out.println(" 射手座 ");
            } else if (birth >= getTimer("2000-01-20") && birth <= getTimer("2000-02-18")) {                System.out.println(" 水瓶座 ");
            } else if (birth >= getTimer("2000-02-19") && birth <= getTimer("2000-03-20")) {                System.out.println(" 双鱼座 ");
            } else {                System.out.println(" 摩羯座 ");
            }
        }
        public static long getTimer (String date) throws ParseException {            SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
            return sdf.parse(date).getTime();
        }
}


手机扫描二维码访问

本文标题:《使用 DateFormat 写的星座查询 Java 小程序》作者:极四维博客
原文链接:https://cway.top/post/99.html
特别注明外均为原创,转载请注明。

分享到微信

扫描二维码

可在微信查看或分享至朋友圈。

相关文章

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

«    2024年10月    »
123456
78910111213
14151617181920
21222324252627
28293031

搜索

控制面板

您好,欢迎到访网站!
  查看权限

最新留言

文章归档

  • 订阅本站的 RSS 2.0 新闻聚合