Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

Can this function be optimized?

Name: Anonymous 2009-05-18 8:52


int SEED = 9000;
int result = 17;
result = (SEED * result) + A;
result = (SEED * result) + B;
result = (SEED * result) + C;
return result;


->

return 9000 * (9000 * ((9000 * 17) + C) + B) + A;

Now what?

Name: Anonymous 2009-05-18 8:55

over 9000 amirite ?

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List