Skip to main content

1st Day of given year program

  Gregorian Calendar Program


According to the Gregorian calendar,it was Monday on the date 01/01/01. If any year is input through the keyboard  write a program to find out what is the day on 1st January of this year.






#include<stdio.h>
void main()
 

{
int year, x;
printf("Enter the year\n");
scanf("%d", &year);
year = year - 1;
x = year + year/4 - year/100 + year/400;
if (x % 7 == 0)
printf("Monday");

else if (x % 7 == 1)
printf("Tuesday");

else if (x % 7 == 2)
printf("Wednesday");

else if (x % 7 == 3)
printf("Thrusday"); 

else if (x % 7 == 4)
printf("Friday");

else if (x % 7 == 5)
printf("Saturday");
else if (x % 7 == 6)
printf("Sunday");


getch();
}

Comments

Popular posts from this blog

C Program to print the pattern

C Program to print the pattern X X Y X Y Z ........................................................................................ #include<stdio.h> #include<conio.h> void main () { int i , j ; for ( i= 88 ; i< 91 ;i ++) { for ( j = 88 ;j <= i ; j ++) { printf ( "%c" , j );                    }           printf ( "\n" ); } getch (); } ........................................................................................ OUTPUT

Deen Dayal Upadhyay Gorakhpur University RESULTS

DDU Gorakhpur results chahiye to yaha click kare                                                                       RESULTS  

Computer Science B.Sc2nd Practical 2016

             Deen Dayal Upadhyaya Gorakhpur University                            Computer Science B.Sc2nd Practical 2016