#include<stdio.h> #include<string.h> typedef struct{ int year; int month; int day; }DAY,*SD; int main(){ SD sd=(SD)malloc(sizeof(DAY)); if(sd==NULL) return 0; int arr[12]={31,28,31,30,31,30,31,31,30,31,30,31}; scanf("%d %d %d",&(sd->year),&(sd->month),&(sd->day)); if((sd->year)%4==0 && (sd->year)%100!=0 ||(sd->year)%400==0){ arr[1]=29; } int days=0; for(int i=0;i<sd->month-1;i++){ days+=arr[i]; } printf("%d",days+(sd->day)); return 0; }
0.0分
0 人评分
C二级辅导-进制转换 (C语言代码)浏览:1053 |
简单的a+b (C语言代码)浏览:764 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:466 |
【蟠桃记】 (C语言代码)浏览:711 |
大小写转换 (C语言代码)浏览:904 |
A+B for Input-Output Practice (II) (C语言代码)浏览:1043 |
C语言程序设计教程(第三版)课后习题7.2 (C语言代码)浏览:686 |
a+b浏览:452 |
C语言程序设计教程(第三版)课后习题5.4 (C语言代码)浏览:585 |
核桃的数量 (C语言代码)浏览:893 |