Need some insight with these sets

This is a discussion on Need some insight with these sets within the C++ Programming forums, part of the General Programming Boards category; How to write the function int SuperSum(int n); which finds the sum of Sum(1)+Sum(2)+...+Sum(n) (question #1). Use it to find ...

  1. #1
    uno
    uno is offline
    Registered User
    Join Date
    Dec 2011
    Posts
    2

    Post Need some insight with these sets

    How to write the function int SuperSum(int n); which finds the sum of Sum(1)+Sum(2)+...+Sum(n) (question #1). Use it to find the sum of (1)+(1+2)+...+(1+2+3+4+5+6+7+8+9+10)??

  2. #2
    uno
    uno is offline
    Registered User
    Join Date
    Dec 2011
    Posts
    2
    Write a function int Sum(int n); which will find the sum 1+2+3+...+n. Use it to find the sum of 1+2+...+100

    How to write the function int SuperSum(int n); which finds the sum of Sum(1)+Sum(2)+...+Sum(n) (question #1). Use it to find the sum of (1)+(1+2)+...+(1+2+3+4+5+6+7+8+9+10)??

  3. #3
    C++ Witch laserlight's Avatar
    Join Date
    Oct 2003
    Location
    Singapore
    Posts
    19,550
    My guess is that you are expected to use a loop.
    C + C++ Compiler: MinGW port of GCC
    Version Control System: Bazaar

    Look up a C++ Reference and learn How To Ask Questions The Smart Way

  4. #4
    Algorithm Dissector iMalc's Avatar
    Join Date
    Dec 2005
    Location
    New Zealand
    Posts
    6,076
    So basically you're calculating the number of presents in the 12 days of Christmas...
    My homepage
    Advice: Take only as directed - If symptoms persist, please see your debugger

    Linus Torvalds: "But it clearly is the only right way. The fact that everybody else does it some other way only means that they are wrong"

  5. #5
    Registered User whiteflags's Avatar
    Join Date
    Apr 2006
    Location
    United States
    Posts
    6,897
    Isn't it the same as sum(n = 0, n =12) n * (12 - n) (in my fail math notation)
    Last edited by whiteflags; 12-20-2011 at 01:32 PM. Reason: yay, calculation error!
    Quote Originally Posted by phantomotap
    Can you write code while blindfolded only with the blind covering your brain? Can you code while brainfolded?

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. Need some insight on a few things
    By xxsomethingxx in forum C# Programming
    Replies: 0
    Last Post: 10-13-2009, 04:11 PM
  2. Noob needing some help and insight
    By punktilend in forum C++ Programming
    Replies: 1
    Last Post: 02-24-2009, 03:41 PM
  3. Seeking insight into a link Dave provided to someone
    By cdalten in forum C Programming
    Replies: 3
    Last Post: 03-25-2006, 10:13 AM
  4. ATD: C++ Sets
    By stalker in forum C++ Programming
    Replies: 9
    Last Post: 11-09-2004, 05:40 AM
  5. Insight Into const_cast on const data-members
    By shiv_tech_quest in forum C++ Programming
    Replies: 11
    Last Post: 01-21-2003, 04:53 AM

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21