如何使用 C 中的 for 迴圈列印使用者選擇的一個月日曆?


列印一個月的日曆的邏輯如下 -

for(i=1;i<first;i++)
   printf(" ");
for(i=1;i<=noofdays;i++){
   printf("%3d",i);
   if((first+i-1)%7==0)
      printf("
"); }

示例

 現場演示

下面的示例接受使用者輸入的該月份中的天數和第一天,並據此列印該月份的日曆 -

#include<stdio.h>
int main(){
   int i,noofdays;
   int first;
   printf("enter no of days in a month:
");    scanf("%d",&noofdays);    printf("enter first day in a month:
");    scanf("%d",&first);    for(i=1;i<first;i++)       printf(" ");    for(i=1;i<=noofdays;i++){       printf("%3d",i);       if((first+i-1)%7==0)          printf("
");    }    return 0; }

輸出

enter no of days in a month:
30
enter first day in a month:
4
             1 2 3 4
 5  6  7  8  9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30

更新於: 2021 年 3 月 6 日

5K+ 次瀏覽

開啟您 職業生涯

完成課程獲得認證

開始
廣告
© . All rights reserved.