First of all, I don't know exactly what you are trying to do, but I do see some funny stuff happening. First of all, why would you put empty quotations after cout, like this:
CODE
cout << "";
It doesn't make any sense.
Also, why are you needlessly using curly brackets? This:
CODE
int main()
{
int count = 1990;
cout<< ""<<count<<endl;
cout<< ""<<++count<<endl;
cout<< ""<<++count<<endl;
{
int count=1993;
cout<< ""<<count<<endl;
{
int count=135;
cout<< ""<<count<<endl;
{
int count=7290;
cout<< ""<<count<<endl;
{
int count=11300;
cout<<""<<count<<endl;
{
int count= 16700;
cout<<""<<count<<endl;
}
}
}
}
}
could be re-written as this:
CODE
int main()
int count = 1990;
cout <<count<<endl;
cout << ++count << endl;
cout << ++count << endl;
int count=1993;
cout << count << endl;
int count=135;
cout << count << endl;
int count=7290;
cout << count << endl;
int count=11300;
cout << count << endl;
int count= 16700;
cout << count << endl;
What exactly was your question, and what exactly is the point of this program?