Home > Backend Development > C++ > body text

How to print a calendar for a month selected by the user using a for loop in C?

PHPz
Release: 2023-08-28 15:41:05
forward
1554 people have browsed it

How to print a calendar for a month selected by the user using a for loop in C?

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>");
}
Copy after login

Example

Demonstration

The following example accepts users Enter the number of days and the first day of the month and print the calendar for that month accordingly −

#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;
}
Copy after login

Output

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
Copy after login

The above is the detailed content of How to print a calendar for a month selected by the user using a for loop in C?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!