oj---九度oj---1070----今年的第几天
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oj---九度oj---1070----今年的第几天相关的知识,希望对你有一定的参考价值。
通过与原点的差值来计算第几天(要+1).
#include<cstdio> int isleap(int n){ if((n%100!=0&&n%4==0)||n%400==0) return 1; else return 0; } int dayofmonth[13][2]={ 0,0, 31,31, 28,29, 31,31, 30,30, 31,31, 30,30, 31,31, 31,31, 30,30, 31,31, 30,30, 31,31, }; //****// struct date{ int d; int m; int y; void nextday(){ d++; if(d>dayofmonth[m][isleap(y)]){ m++; d=1; if(m>12){ m=1; y++; } } } }; int process[5005][13][32]; int abs(int x){ return x<0?-x:x; } int main(){ date tmp; int cnt=0; tmp.d=1; tmp.m=1; tmp.y=0; while(tmp.y!=5001){ process[tmp.y][tmp.m][tmp.d]=cnt; tmp.nextday(); cnt++; } int d1,m1,y1; int d2=1,m2=1,y2; while(scanf("%4d%2d%2d",&y1,&m1,&d1)!=EOF){ y2=y1; int res=process[y1][m1][d1]-process[y2][m2][d2]+1; printf("%d\n",res); } return 0; }
以上是关于oj---九度oj---1070----今年的第几天的主要内容,如果未能解决你的问题,请参考以下文章