Talk:KBounce

From Wikipedia, the free encyclopedia

Famicom style controller This article is within the scope of WikiProject Video games. For more information, visit the project page, where you can join the project and/or contribute to the discussion.
Start This article has been rated as start-Class on the assessment scale.

its messy, and perhaps too complex as is, I got tied up with my wording at points, so any tips or edits to clean it up are probably in best interests. Trjn 06:03, 13 September 2005 (UTC)

[edit] Theoretical Limits

I would love for someone to double, triple, hell, everyone check my maths there. Im not so sure its right, but Im pretty sure it is. I made a c++ code snippet to check to score using integers if it helps:

void doint(int max) {
        int sum=0;
        for(int i=1;i<=max;i++)
                sum += 2*(100-((504-(i+1))/504 * 100))*(i+5) + (15*(i+1));
        cout<<"Score (int):\t "<<ios::fixed<<sum<<endl; 
}

find/replace int with double and you get the 'real' answer. -Trjn 06:26, 7 July 2006 (UTC)