Advertisement
dllbridge

Untitled

Nov 22nd, 2024
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.05 KB | None | 0 0
  1.  
  2. ///   1000
  3. //     945
  4.  
  5. #include   <stdio.h>
  6.    
  7.  
  8.  int sum_up_to_7(int n);
  9.  int summ(int n);
  10.  int sub (int n);
  11.  int sum_up_to_7(int n);
  12.  int (*p_foo)(int n) = summ;
  13.  
  14. //////////////////////////////////////////////////////////
  15. int main()
  16. {
  17.        
  18.     int n = sum_up_to_7(5);    
  19.      
  20.      
  21.                
  22.     printf("n = %d", n);    
  23.  
  24. return 0;
  25. }
  26.  
  27. //////////////////////////////////////////////////////////
  28. int sum_up_to_7(int n)
  29. {
  30.     int nPrice = 1000,
  31.         nSumma =    0;
  32.  
  33.     for(int i = 1; i <= n; i++)
  34.     {
  35.         nSumma = nSumma + nPrice;
  36.        
  37.         nPrice -= 55;
  38.     }
  39.    
  40. return  nSumma;    
  41. }
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  /*  
  51.     switch(n)
  52.     {
  53.              
  54.        case  0: return    0;      
  55.        case  1: return 1000;  
  56.        case  2: return 1945;              
  57.     }*/
  58. //////////////////////////////////////////////////////////
  59. int sub(int n)
  60. {
  61.    
  62.  return 100 - n;  
  63. }
  64.  
  65.  
  66.  
  67.  
  68.  
  69. //////////////////////////////////////////////////////////
  70. int summ(int n)
  71. {
  72.    
  73.  return 100 + n;  
  74. }
  75.  
  76.  
  77.  
  78.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement