这是为Project Euler 19准备的。我几乎弄明白了代码,但出于某种原因,我的输出是+1。
#include <stdio.h>
#define SIZE 12
int main(void)
{
int year;
int month;
int daysinmonths[SIZE] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int currentday = 365; /* Account for 1900 */
int sundaycount = 0;
for (year = 1901; year <= 2000; year++) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
daysinmonths[1] = 29;
}
for (month = 0; month < SIZE; month++) {
if (currentday % 7 == 0)
sundaycount++;
currentday += daysinmonths[month];
}
}
printf("%d Sundays as the first of a month from 1901 to 2000 \n", sundaycount);
}发布于 2017-10-20 12:20:15
#include <stdio.h>
#define SIZE 12
int main(void)
{
int year;
int month;
int daysinmonths[SIZE] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
int currentday = 366; /* Account for 1900 */
int sundaycount = 0;
for (year = 1901; year <= 2000; year++) {
if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
daysinmonths[1] = 29;
}
else{
daysinmonths[1] = 28;
}
for (month = 0; month < SIZE; month++) {
if (currentday % 7 == 0){
sundaycount++;
}
currentday += daysinmonths[month];
}
}
printf("%d Sundays as the first of a month from 1901 to 2000 \n", sundaycount);
}https://stackoverflow.com/questions/46842219
复制相似问题