首頁 > 後端開發 > C++ > 如何使用C語言中的for循環列印使用者選擇的一個月份的日曆?

如何使用C語言中的for循環列印使用者選擇的一個月份的日曆?

PHPz
發布: 2023-08-28 15:41:05
轉載
1635 人瀏覽過

如何使用C語言中的for循環列印使用者選擇的一個月份的日曆?

The logic to print a one-month calendar is as follows −

for(i=1;i<first;i++)
   printf(" ");
for(i=1;i<=noofdays;i++){
   printf("%3d",i);
   if((first+i-1)%7==0)
      printf("</p><p>");
}
登入後複製

範例

 演示

以下範例接受用戶輸入的天數和月份的第一天,並相應地列印該月份的日曆−

#include<stdio.h>
int main(){
   int i,noofdays;
   int first;
   printf("enter no of days in a month:</p><p>");
   scanf("%d",&noofdays);
   printf("enter first day in a month:</p><p>");
   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("</p><p>");
   }
   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
登入後複製

以上是如何使用C語言中的for循環列印使用者選擇的一個月份的日曆?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:tutorialspoint.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
最新問題
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板