Quote (SlayingWhileInt0xicated @ May 22 2012 11:18am)
Still getting stuck on this if (system.length) thing
this is what I did
if(system.length () != 1)
{
cout << "You have entered << temp << system << ". This is incorrect." endl;
i get an error that says: Request for member in 'length' in 'system' , which is of non-class type 'char'
the .length() method is part of the C# family. what you want to do is include strings.h or strings and then use the strlen() function.