打酱油的


私信TA

用户名:1017563043

访问量:5672

签 名:

摸鱼使我快乐

等  级
排  名 952
经  验 3424
参赛次数 0
文章发表 73
年  龄 22
在职情况 学生
学  校 广州松田职业学院
专  业 计算机应用技术

  自我简介:

略略略略略略~~~~

解题思路:

注意事项:

参考代码:

#include <stdio.h>

typedef struct date{

int year,month,day;

}D;

int main()

{

D d;

int total=0;

scanf("%d%d%d",&d.year,&d.month,&d.day);

total+=d.day;

switch(d.month-1){

case 11:total+=30;

case 10:total+=31;

case 9:total+=30;

case 8:total+=31;

case 7:total+=31;

case 6:total+=30;

case 5:total+=31;

case 4:total+=30;

case 3:total+=31;

case 2:total+=28;

case 1:total+=31;

}

if(d.year%400==0||d.year%4==0&&d.year%100!=0)

if(d.month>2)

total++;

printf("%d",total);

}


 

0.0分

0 人评分

  评论区

  • «
  • »