Is Friday the 13th really an unusual event?
That is, does the 13th of the month land on a Friday less often than on any other day of the week? To answer this question, write a program that will compute the frequency that the 13th of each month lands on Sunday, Monday, Tuesday, Wednesday, Thursday, Friday, and Saturday over a given period of N years. The time period to test will be from January 1, 1900 to December 31, 1900+N-1 for a given number of years, N. N is non-negative and will not exceed 400.
There are few facts you need to know before you can solve this problem:
Do not use any built-in date functions in your computer language.
Don't just precompute the answers, either, please.
One line with the integer N.
20
Seven space separated integers on one line. These integers represent the number of times the 13th falls on Saturday, Sunday, Monday, Tuesday, ..., Friday.
36 33 34 33 35 35 34
题目大意:输入一个整数N,表示从1900年算起N年,问N年内每个月的第13天都是星期几,最后分别输出落到星期几的次数
算法分析:简单模拟题,注意平年和闰年,计算每个月是星期几,记录一下结果就可以了
代码/*
ID: qqxinre1
LANG: C
TASK: friday
*/
#include < stdio.h >
#include < string .h >
#include < stdlib.h >
void main(){
FILE * fin = fopen( " friday.in " , " r " );
FILE * fout = fopen( " friday.out " , " w " );
int ans[ 10 ], i, year, mon, day, N, leap;
int Mon[ 2 ][ 13 ] = { 0 , 31 , 28 , 31 , 30 , 31 , 30 , 31 , 31 , 30 , 31 , 30 , 31 ,
0 , 31 , 29 , 31 , 30 , 31 , 30 , 31 , 31 , 30 , 31 , 30 , 31 };
fscanf(fin, " %d " , & N);
memset(ans, 0 , sizeof (ans));
day = 0 ;
for (i = 0 ; i < N; i ++ ){
year = i + 1900 ;
if ((year % 4 == 0 && year % 100 != 0 ) || (year % 400 == 0 ))
leap = 1 ;
else
leap = 0 ;
for (mon = 1 ; mon <= 12 ; mon ++ ){
day += 13 ;
ans[day % 7 ] ++ ;
day += (Mon[leap][mon] - 13 );
}
}
fprintf(fout, " %d " , ans[ 6 ]);
for (i = 0 ; i < 6 ; i ++ )
fprintf(fout, " %d " , ans[i]);
fprintf(fout, " \n " );
exit( 0 );
}