学好C走遍天下都不怕


私信TA

用户名:goodC

访问量:1151

签 名:

等  级
排  名 2811
经  验 2143
参赛次数 0
文章发表 31
年  龄 0
在职情况 学生
学  校 合肥学院
专  业

  自我简介:

#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 人评分

  评论区

  • «
  • »