首页 > 代码库 > 分支-13. 计算天数(15)
分支-13. 计算天数(15)
本题要求编写程序计算某年某月某日是该年中的第几天。
输入格式:
输入在一行中按照格式“yyyy/mm/dd”(即“年/月/日”)给出日期。注意:闰年的判别条件是该年年份能被4整除但不能被100整除、或者能被400整除。闰年的2月有29天。
输出格式:
在一行输出日期是该年中的第几天。
输入样例1:2009/03/02输出样例1:
61输入样例2:
2000/03/02输出样例2:
62
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner cin = new Scanner(System.in); String str = cin.nextLine(); String[] strs = str.split("/"); int year = Integer.parseInt(strs[0]); int month = Integer.parseInt(strs[1]); int day = Integer.parseInt(strs[2]); int[] months = { 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 }; if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) { months[1] = 29; } int result = 0; for (int i = 0; i < month - 1; i++) { result += months[i]; } result += day; System.out.print(result); } }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。