/ 科创班 /

记录详情

Wrong Answer


  
# 状态 耗时 内存占用
#1 Wrong Answer 3ms 256.0 KiB

代码

#include <stdio.h>
 int main() 
 { 
 int year,month,day;
 int judge,i;
 int sum=0;
 int date[2][12]={{31,28,31,30,31,30,31,31,30,31,30,31},{31,29,31,30,31,30,31,31,30,31,30,31}};
 printf("输入年月日:");
 scanf("%d %d %d",&year,&month,&day);
 judge=(year%4==0)||(year%400==0 && year%100!=0);
 for(i=0;i<month-1;i++)
 sum+=date[judge][i];
 sum+=day;
 printf("它是%d年中的第%d天\n",year,sum);
 return 0; 
 }

信息

递交者
类型
递交
题目
给出年、月、日,计算该日是该年的第几天
题目数据
下载
语言
C
递交时间
2018-06-17 17:20:57
评测时间
2018-06-17 17:20:57
评测机
分数
0
总耗时
3ms
峰值内存
256.0 KiB