Advertisement
aiNayan

3(V)

Nov 3rd, 2020
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int a;
  5. printf("Enter a weekday number: ");
  6. scanf("%d", &a);
  7. if (a == 1)
  8. printf("%d is Saturday", a);
  9. else if (a == 2)
  10. printf("%d is Sunday", a);
  11. else if (a == 3)
  12. printf("%d is Monday", a);
  13. else if (a == 4)
  14. printf("%d is Tuesday", a);
  15. else if (a == 5)
  16. printf("%d is Wednesday", a);
  17. else if (a == 6)
  18. printf("%d is Thursday", a);
  19. else if (a == 7)
  20. printf("%d is Friday", a);
  21. return 0;
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement