Advertisement
dllbridge

Untitled

Oct 29th, 2024
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 2.63 KB | None | 0 0
  1.  
  2.  
  3.  
  4. #include   <stdio.h>
  5.  
  6. int foo(int);
  7.  
  8.  
  9. ///////////////////////////////////////////////////////////////
  10. int main()
  11. {
  12.     int n = 27,
  13.         nSerial  = n/7,
  14.         nOstatoc = n%7,  
  15.         nSumma   =   0;    
  16.    
  17.     nSumma = nSerial * 5845;
  18.    
  19.     nSumma += foo(nOstatoc);
  20.  
  21.     printf("nSumma = %d \n", nSumma);
  22. }
  23.  
  24. /////////////////////////////////////////////////////////////////
  25. int foo(int nOstatoc)
  26. {
  27.    
  28.     switch(nOstatoc)
  29.     {
  30.                    
  31.          case 0:  return    0;          
  32.          case 1:  return 1000;      
  33.          case 2:  return 1945;          
  34.          case 3:  return 2835;  
  35.          case 4:  return 3670;      
  36.          case 5:  return 4450;  
  37.          case 6:  return 5175;        
  38.                                            
  39.     }    
  40. }
  41.  
  42. /*
  43.  
  44. #include   <stdio.h>
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51. ///////////////////////////////////////////////////////////////
  52. int main()
  53. {
  54.     int n = 27;
  55.    
  56.     int nSerial  = n/7;
  57.     int nOstatoc = n%7;    
  58.  
  59.     int nSumma   =   0;
  60.    
  61.     nSumma = nSerial * 5845;
  62.    
  63.     switch(nOstatoc)
  64.     {
  65.                    
  66.          case 0:  nSumma +=    0;  break;        
  67.          case 1:  nSumma += 1000;  break;    
  68.          case 2:  nSumma += 1945;  break;        
  69.          case 3:  nSumma += 2835;  break;  
  70.          case 4:  nSumma += 3670;  break;        
  71.          case 5:  nSumma += 4450;  break;
  72.          case 6:  nSumma += 5175;  break;        
  73.                                            
  74.     }
  75.     printf("nSumma = %d \n", nSumma);
  76. }
  77.  
  78.  
  79. */
  80.  
  81.  
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  //   printf("nSerial  = %d \n",  nSerial);    
  92.  //   printf("nOstatoc = %d \n", nOstatoc);
  93.  
  94. //  scanf("%d", &n);
  95.    
  96. //      //int
  97. //    printf("2 / 7 = %f \n", (float)2/(float)7);
  98.  
  99. /*
  100.  
  101.  
  102. #include   <stdio.h>
  103.  
  104. int nArr[10][10];
  105.                                             // = {0};  
  106.  
  107. void monitor();
  108.  
  109.  
  110. ///////////////////////////////////////////////////////////////
  111. int main()
  112. {
  113.    
  114.    
  115.     for(int i = 0; i < 10; i++)
  116.     {
  117.         nArr[i][4] = 17;
  118.     }
  119.    
  120.     monitor();          
  121.    
  122.  
  123. return 0;
  124. }
  125.  
  126.  
  127. //////////////////////////////////////////////////////////////
  128. void monitor()
  129. {
  130.  
  131.     for(int i = 0; i < 10; i++) {
  132.     for(int x = 0; x < 10; x++) {  
  133.    
  134.         printf("%d, ", nArr[i][x]);        
  135.       } printf("\n");
  136.     }  
  137.  
  138. }
  139. */
  140. /*
  141. //////////////////////////////////////////////////////////////
  142. void monitor()
  143. {
  144.  
  145.     for(int i = 0; i < 10; i++) {
  146.     for(int x = 0; x < 10; x++)
  147.     {
  148.            
  149.            
  150.         printf("nArr[%d][%d] = %d\n", i, x, nArr[i][x]);        
  151.     }   printf("\n"); }
  152.  
  153. }
  154.  
  155.  
  156. */
  157.  
  158.  
  159.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement