1 か月カレンダーを印刷するロジックは次のとおりです。-
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 中国語 Web サイトの他の関連記事を参照してください。