Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /// 1000
- // 945
- #include <stdio.h>
- int sum_up_to_7(int n);
- int summ(int n);
- int sub (int n);
- int sum_up_to_7(int n);
- int (*p_foo)(int n) = summ;
- //////////////////////////////////////////////////////////
- int main()
- {
- int n = sum_up_to_7(5);
- printf("n = %d", n);
- return 0;
- }
- //////////////////////////////////////////////////////////
- int sum_up_to_7(int n)
- {
- int nPrice = 1000,
- nSumma = 0;
- for(int i = 1; i <= n; i++)
- {
- nSumma = nSumma + nPrice;
- nPrice -= 55;
- }
- return nSumma;
- }
- /*
- switch(n)
- {
- case 0: return 0;
- case 1: return 1000;
- case 2: return 1945;
- }*/
- //////////////////////////////////////////////////////////
- int sub(int n)
- {
- return 100 - n;
- }
- //////////////////////////////////////////////////////////
- int summ(int n)
- {
- return 100 + n;
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement