Advertisement
dllbridge

Untitled

Jan 27th, 2025 (edited)
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.80 KB | None | 0 0
  1.  
  2. #define _CRT_SECURE_NO_WARNINGS
  3. #include  <stdio.h>
  4. #include <string.h>
  5. #include <locale.h>
  6.  
  7.  
  8. /////////////////////////////////////////////////
  9. int main()
  10. {
  11.    
  12.     int  a;
  13.  
  14.     setlocale(LC_ALL, "rus");
  15.    
  16.     printf("  Введите  месяц: ");   scanf("%d", &a);
  17.    
  18.     int n = 1;
  19.    
  20.     if(a == 1) 
  21.     {
  22.         printf("Январь: \n");
  23.        
  24.         for(int a = 1; a <= 31; a++)
  25.         {
  26.    
  27.             if(n > 7) { printf("\n"); n = 1; }
  28.            
  29.             printf("%2d ", a);
  30.             n++;
  31.          }
  32.          
  33.          return 0;
  34.     }
  35.    
  36.     for(int a = 0; a <= 28; a++)
  37.     {
  38.         if (a == 2)
  39.         {
  40.  
  41.             printf(" Февраль");
  42.  
  43.         }
  44.         printf("%d\n", a);
  45.  
  46.     }
  47.     for (int a = 0; a <= 31; a++)
  48.     {
  49.         if (a == 3)
  50.         {
  51.  
  52.             printf("Март");
  53.  
  54.         }
  55.         printf("%d\n", a);
  56.  
  57.  
  58.  
  59.     }
  60.  
  61. }
  62.  
  63.  
  64.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement