i know im doing the function wrong in the (stuff) i have hilighted it in red and ther is some other stuff but can people tell me what im doing wrong?
Code:
#include <iostream>

using namespace std;

int colorred,colorgreen,colorblue;
int x = 36;
void squeee( colorred,colorgreen,colorred )
{
    while ( x >= 0 )
    {
        oout<<"<font color="<<colorred<<colorgreen<<colorblue<<">e</font>;
        if ( colorblue == 99 )
        {
             colorgreen --;
        }
        else if ( colorred == 00 )
        {
             colorblue ++;
        }
        else if ( colorgreen == 99 )
        {
             colorred --;
        }
        else
        {
            colorgreen ++;
        }
        x --;
        }
    system("pause");
    }

int main()
{
    squeee(99,00,00)
}