91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c語言怎么求任意兩個日期之間的天數

小億
128
2023-11-22 07:00:30
欄目: 編程語言

可以使用以下步驟來求任意兩個日期之間的天數:

  1. 從用戶輸入或其他方式獲取兩個日期的年份、月份和日期。
  2. 計算每個日期距離公元元年(即元年1月1日)的天數,可以使用下面的公式: 總天數 = (年份 - 1) * 365 + (年份 - 1) / 4 - (年份 - 1) / 100 + (年份 - 1) / 400 + 當年天數 其中,當年天數 = 當月之前的天數 + 當月的天數,當月之前的天數可以使用數組或switch語句來計算。 注意:在使用這個公式計算之前,需要判斷年份是否為閏年,閏年的判斷條件是年份能被4整除但不能被100整除,或者能被400整除。
  3. 將第二個日期的總天數減去第一個日期的總天數,即可得到任意兩個日期之間的天數。

下面是一個示例代碼:

#include <stdio.h>

int isLeapYear(int year) {
    if ((year % 4 == 0 && year % 100 != 0) || year % 400 == 0) {
        return 1;
    } else {
        return 0;
    }
}

int getDaysOfMonth(int year, int month) {
    int days[] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
    if (month == 2 && isLeapYear(year)) {
        return 29;
    } else {
        return days[month - 1];
    }
}

int getTotalDays(int year, int month, int day) {
    int totalDays = (year - 1) * 365 + (year - 1) / 4 - (year - 1) / 100 + (year - 1) / 400;
    for (int i = 1; i < month; i++) {
        totalDays += getDaysOfMonth(year, i);
    }
    totalDays += day;
    return totalDays;
}

int main() {
    int year1, month1, day1;
    int year2, month2, day2;
    printf("請輸入第一個日期(年 月 日):");
    scanf("%d %d %d", &year1, &month1, &day1);
    printf("請輸入第二個日期(年 月 日):");
    scanf("%d %d %d", &year2, &month2, &day2);
    int totalDays1 = getTotalDays(year1, month1, day1);
    int totalDays2 = getTotalDays(year2, month2, day2);
    int days = totalDays2 - totalDays1;
    printf("兩個日期之間的天數為:%d\n", days);
    return 0;
}

希望對你有幫助!

0
林周县| 新营市| 临泽县| 三亚市| 安图县| 盐山县| 常德市| 霍林郭勒市| 太保市| 邢台县| 颍上县| 江达县| 岐山县| 虎林市| 黄山市| 从化市| 乐山市| 杭州市| 喀什市| 多伦县| 青州市| 宁海县| 大方县| 育儿| 泽库县| 西平县| 本溪| 东莞市| 灌南县| 横山县| 东至县| 武清区| 永兴县| 汾西县| 遂溪县| 乐亭县| 沙坪坝区| 霸州市| 长沙市| 广灵县| 兴化市|