A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© 朱磊zl 中级黑马   /  2015-6-14 21:29  /  189 人查看  /  0 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

  1. 输入某年某月某日,判断这一天是这一年的第几天?
  2. 程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊情况,闰年且输入月份大于3时需考虑多加一天。
  3. import java.util.Scanner;
  4. public class Prog14{
  5.         public static void main(String[] args){
  6.                 Scanner scan = new Scanner(System.in).useDelimiter("\\D");//匹配非数字
  7.                 System.out.print("请输入当前日期(年-月-日):");
  8.                 int year = scan.nextInt();
  9.                 int month = scan.nextInt();
  10.                 int date = scan.nextInt();
  11.                 scan.close();
  12.                 System.out.println("今天是"+year+"年的第"+analysis(year,month,date)+"天");
  13.         }
  14.         //判断天数
  15.         private static int analysis(int year, int month, int date){
  16.                 int n = 0;
  17.                 int[] month_date = new int[] {0,31,28,31,30,31,30,31,31,30,31,30};
  18.                 if((year%400)==0 || ((year%4)==0)&&((year%100)!=0))
  19.                   month_date[2] = 29;
  20.                 for(int i=0;i<month;i++)
  21.                   n += month_date[i];
  22.                 return n+date;
  23.         }
  24. }
复制代码

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马