您好,欢迎访问一九零五行业门户网

如何使用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("
");}
示例 演示
以下示例接受用户输入的天数和月份的第一天,并相应地打印该月份的日历 −
#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:30enter first day in a month:4 1 2 3 4 5 6 7 8 9 10 1112 13 14 15 16 17 1819 20 21 22 23 24 2526 27 28 29 30
以上就是如何使用c语言中的for循环打印用户选择的一个月份的日历?的详细内容。
其它类似信息

推荐信息