Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define _CRT_SECURE_NO_WARNINGS
- #include <stdio.h>
- #include <string.h>
- #include <locale.h>
- /////////////////////////////////////////////////
- int main()
- {
- int a;
- setlocale(LC_ALL, "rus");
- printf(" Введите месяц: "); scanf("%d", &a);
- int n = 1;
- if(a == 1)
- {
- printf("Январь: \n");
- for(int a = 1; a <= 31; a++)
- {
- if(n > 7) { printf("\n"); n = 1; }
- printf("%2d ", a);
- n++;
- }
- return 0;
- }
- for(int a = 0; a <= 28; a++)
- {
- if (a == 2)
- {
- printf(" Февраль");
- }
- printf("%d\n", a);
- }
- for (int a = 0; a <= 31; a++)
- {
- if (a == 3)
- {
- printf("Март");
- }
- printf("%d\n", a);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement