解题思路: 数组计数
注意事项: 注意区分闰年的情况
参考代码:
import java.util.Scanner; /** * 2021年2月16日 下午8:32:46 * @author praguetramp */ public class Main { public static void main(String []args) { Scanner in =new Scanner(System.in); int arr[][]=new int[][] {{0,31,28,31,30,31,30,31,31,30,31,30,31},{0,31,29,31,30,31,30,31,31,30,31,30,31}}; while(in.hasNext()) { String date[] = in.nextLine().split("/"); int cnt=0; int y=Integer.parseInt(date[0]),m=Integer.parseInt(date[1]),d=Integer.parseInt(date[2]); if(y%400==0||y%4==0&&y%100!=0) for(int i=0;i<m;i++) cnt+=arr[1][i]; else for(int i=0;i<m;i++) cnt+=arr[0][i]; System.out.println(cnt+d); } in.close(); } }
0.0分
0 人评分
不容易系列 (C语言代码)浏览:704 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:468 |
蚂蚁感冒 (C语言代码)浏览:1409 |
1124题解浏览:632 |
小O的数字 (C语言代码)浏览:1491 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:630 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:522 |
C语言训练-求PI* (C语言代码)浏览:520 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:596 |
简单的a+b (C语言代码)浏览:644 |