题三:根据输入的年月日,计算是今年的第几天

只要输入的地方都应该有合法检测,还有什么异常处理了,最好的当然是加上,不加的话主要看你怎么说服面试官让你不加也可以。

import java.util.Scanner;

/**
 * 3、输入年月日 输出这是今年第几天:
 Input the year:
 Input the month:
 Input  the day:
 2011:4:26时今年第116天。
 */
public class Test3 {
    public static void main(String[] args) {
        Scanner s = new Scanner(System.in);
        System.out.println("Input the year:");
        int year = s.nextInt();
        System.out.println("Input the month:");
        int month = s.nextInt();
        System.out.println("Input the day:");
        int day = s.nextInt();
        System.out.println();

        if(!check(year,month,day)){
            System.out.println("非法输入,程序终止");
            return;
        }

        int count=0;
        switch (month-1){
            case(11): count+=30;
            case(10): count+=31;
            case(9): count+=30;
            case(8): count+=31;
            case(7): count+=31;
            case(6): count+=30;
            case(5): count+=31;
            case(4): count+=30;
            case(3): count+=31;
            case(2): {
                count+=28;
            }
            case(1): count+=31;
            default:
        }

        count+=day;

        if((year%4==0&&year%100!=0)||year%400==0){
      if(month>2)   count
++; } System.out.println(year+":"+month+":"+day+"是今年第"+count+"天。"); } public static boolean check(int year,int month,int day){ //检测年月日是否合法,这个自己写吧,年月日均为正数、月不可大于12,每个月有多少天,二月和闰年的关系 return true; } }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值