Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- #include <stdlib.h>
- int main()
- {
- int day;
- printf("Enter the number of the day: ");
- scanf("%d", &day);
- switch(day){
- case 1:
- printf("Monday");
- break;
- case 2:
- printf("Tuesday");
- break;
- case 3:
- printf("Wednesday");
- break;
- case 4:
- printf("Thursday");
- break;
- case 5:
- printf("Friday");
- break;
- case 6:
- printf("Saturday");
- break;
- case 7:
- printf("Sunday");
- break;
- default:
- printf("Invalid input");
- break;
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement