Auto commit

This commit is contained in:
smallkun 2025-02-20 19:51:06 +08:00
parent d099950411
commit 67bbdeca62
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,31 @@
#include <stdio.h>
int main(){
int year, month, day, days=0;
scanf("%d-%d-%d", &year, &month, &day);
days+=day;
//1 3 5 7 8 10 12
//从前一个月开始依次
switch(month-1){
case 11:days+=30;
case 10:days+=31;
case 9:days+=30;
case 8:days+=31;
case 7:days+=31;
case 6:days+=30;
case 5:days+=31;
case 4:days+=30;
case 3:days+=31;
case 2:days+=28;
case 1:days+=31;
}
if(month>3 && (year%4==0&&year%100!=0 || year%400==0)){
days++;
}
printf("%d\n", days);
return 0;
}

Binary file not shown.