Supercoolmayo
Superstar
90 i think
2x3
3x4
4x5
5x6
6x7
7x8
8x9
9x10
![]()
7 = 42 + 14
8 = (42 + 14) + 16
9 = ((42 + 14) + 16) + 18

why are you multiplying 9 & 7?9x7 = 63 Ya'll not tricking me.![]()
x = (y/x) - 1
x^2 = y - x
x^2 + x = y
f(x) = x^2 + x
f(2) = 6
f(3) = 12
f(4) = 20
f(5) = 30
f(6) = 42
f(7) = 56
f(8) = 72
f(9) = 90

int my_function( int x )
{
int y = 0 ;
y = exp( x, 2 ) + x ;
return y ;
}
Here it is in c++
Code:int my_function( int x ) { int y = 0 ; y = exp( x, 2 ) + x ; return y ; }
int my_function(int x) {
return x * x + x;
}
lol at calling a function and creating variable y when all you need is:
Code:int my_function(int x) { return x * x [COLOR=#ff0000][B]+ x;[/B][/COLOR] }

x = (y/x) - 1
x^2 = y - x
x^2 + x = y
f(x) = x^2 + x
f(2) = 6
f(3) = 12
f(4) = 20
f(5) = 30
f(6) = 42
f(7) = 56
f(8) = 72
f(9) = 90
@beanz

