在嵌套的 for 循环中不更新计数

Count not updating in nested for-loop

我有一个程序,用于计算星期一在特定范围内出现的天数。我无法通过每次迭代更新计数。我尝试更改计数方法,甚至将其放入某些 if 循环中也没有效果。

当前代码

#include <stdio.h>

#define SIZE 1000

#include "printVday.h"

int main() {
    //update date opposite of year so go through all the days first then the year
    //while loop that checks if the date was on a Monday and gets all the Mondays from the month then checks the second last one 
    int d = 15, m = 5, y, day, month, year, yearplus, i = 0;
    char dates[SIZE];

    printf("Enter a year: ");
    scanf("%d", &y);
    
    for (year = y; year <= y + 20; year++) {
        i++;
        for (day = 15; day <= 24; day++) {
            int dow = weekday(day, m, year);
            if (dow == 1) {
                printf("\n%d /%d /%d count = %d\n", day, m, year, i);
                i = 0;
            }
        }
    }
    return 0;
}

int weekday(int d, int m, int y) {

    return (d += m < 3 ? y-- : y - 2, 23 * m / 9 + d + 4 + y / 4 - y / 100 + y / 400) % 7; //Michael Keith and Tom Craver expression to minimise number of keystrokes for conversion of a gregorian date into numerical day of week. Algorithm invented by John H. Conway

}

目前我的计数正在更新但不正确

当前输入和输出

Enter a year: 2015

18 /5 /2015 count = 1

16 /5 /2016 count = 1

23 /5 /2016 count = 0

15 /5 /2017 count = 1

22 /5 /2017 count = 0

21 /5 /2018 count = 1

20 /5 /2019 count = 1

18 /5 /2020 count = 1

17 /5 /2021 count = 1

24 /5 /2021 count = 0

...一直到2035

期望输出

18 /5 /2015 count = 1

16 /5 /2016 count = 2

23 /5 /2016 count = 0

15 /5 /2017 count = 2

22 /5 /2017 count = 0

21 /5 /2018 count = 1

20 /5 /2019 count = 1

18 /5 /2020 count = 1

17 /5 /2021 count = 2

24 /5 /2021 count = 0

如果指定范围内只有一天恰好落在星期一则计为1...如果有2天恰好落在指定范围内的星期一将被计为2,而后者更新为0。

您想要的输出非常具体。您想要区分第一个匹配的星期一(打印范围内星期一的总数)和随后打印 0.

计数的匹配星期一

这是修改后的版本:

#include <stdio.h>

#define SIZE 1000

#include "printVday.h"

int weekday(int d, int m, int y) {
    // Michael Keith and Tom Craver expression to minimise number 
    // of keystrokes for conversion of a Gregorian date into 
    // numerical day of week. Algorithm invented by John H. Conway
    return (d += m < 3 ? y-- : y - 2, 23 * m / 9 + d + 4 + y / 4 - y / 100 + y / 400) % 7;
}

#define MONTH      5
#define START_DAY 15
#define END_DAY   24

int main() {
    // while loop that checks if the date is a Monday and gets all the Mondays
    // from the month then checks the second last one 
    int y, day, m = MONTH, year, i;

    printf("Enter a year: ");
    if (scanf("%d", &y) != 1)
        return 1;
    
    for (year = y; year <= y + 20; year++) {
        i = 1;
        for (day = START_DAY; day <= END_DAY; day++) {
            int dow = weekday(day, m, year);
            if (dow == 1) {
                if (i != 0) {
                    /* on first match, add number of other Mondays in range */
                    i += (END_DAY - day) / 7;
                }
                printf("\n%d /%d /%d count = %d\n", day, m, year, i);
                i = 0;
                day += 6;  // skip other weekdays
            }
        }
    }
    return 0;
}