Advertisement
dllbridge

Untitled

Nov 27th, 2024 (edited)
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.18 KB | None | 0 0
  1. #include   <stdio.h>
  2. #include  <locale.h>       //  здесь "живёт" setlocale(LC_ALL, "rus");
  3.  
  4.  
  5. /////////////////////////////////////////////////////
  6. int main()
  7. {
  8.    
  9.     setlocale(LC_ALL, "rus");
  10.    
  11.     int n       = 0,
  12.         nSerial = 0,
  13.         nOstato = 0,
  14.         nSumma  = 0;
  15.                
  16.     printf("Введите количество книг: ");  scanf("%d", &n);
  17.    
  18.     nSerial = n / 7;   //   printf("nSerial = %d\n", nSerial);
  19.     nOstato = n % 7;   //   printf("nOstato = %d\n", nOstato);
  20.    
  21.     //
  22.    
  23.     switch(nOstato)
  24.     {
  25.         case  0: nSumma =    0;  break;            
  26.         case  1: nSumma = 1000;  break;  
  27.         case  2: nSumma = 1945;  break;              
  28.         case  3: nSumma = 2835;  break;  
  29.         case  4: nSumma = 3670;  break;              
  30.         case  5: nSumma = 4450;  break;  
  31.         case  6: nSumma = 5175;  break;              
  32.         case  7: nSumma = 5845;  break;                                    
  33.     }
  34.    
  35.     nSumma  =  nSumma + (5845 * nSerial);                  // nSumma  += 5845 * nSerial;
  36.    
  37.     printf("Общая стоимость %d книг = %d\n", n, nSumma);
  38.    
  39. return 0;
  40. }
  41.  
  42.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement