解题思路:
闰年的问题,闰年二月有29天,平年二月有28天
普通闰年:公历年份是4的倍数的,且不是100的倍数。世纪闰年:公历年份是整百数的,必须是400的倍数才是世纪闰年。
注意事项:
当为一二月的时候 闰年是不用加一的(因为没过完2月)
参考代码:
import java.util.Scanner; public class Main { static class date{ int year; int month; int day; } public static void main(String[] args) { date t= new date(); Scanner scanner=new Scanner(System.in); t.year = scanner.nextInt(); t.month =scanner.nextInt(); t.day =scanner.nextInt(); int[] m= {31,28,31,30,31,30,31,31,30,31,30,31}; int n=0; for (int i = 0; i < t.month-1; i++) n+=m[i]; n+=t.day; if (t.month>2) if (t.year%4==0&&t.year%100!=0||t.year%400==0) n++; System.out.println(n); } }
0.0分
2 人评分
2005年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:530 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:545 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:633 |
文科生的悲哀 (C语言代码)浏览:1538 |
C二级辅导-阶乘数列 (C语言代码)浏览:583 |
分糖果 (C语言代码)浏览:980 |
C语言程序设计教程(第三版)课后习题8.4 (C语言代码)浏览:607 |
2003年秋浙江省计算机等级考试二级C 编程题(1) (C语言代码)浏览:639 |
【魔板】 (C++代码)浏览:1236 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:477 |