i'm learning c++ at school
does any1 here know c++?
#include <iostream.h>
int main()
{
char what='n';
cout << "Hello... World..." << endl;
cout << "Want me to say I hate you? =P" << endl;
cout << "('y' for yes and 'n' for no) >: ";
cin >> what;
if (what!='n')
{
cout << endl << "Okay... You didn't say no so I'll just say" << endl;
cout << "I HATE YOU!!!! XD" << endl;
}
else
for(int k=1; k<=20; k++)
cout << "spam!!!!!!!!!!!!!!!!!!!!!!!!!!!!" << endl;
return 0;
}