‘cout’ was not declared in this scope
Put the following code before int main(): And you will be able to use cout. For example: Now take a moment and read up on what cout is and what is going on here: http://www.cplusplus.com/reference/iostream/cout/ Further, while its quick to do and it works, this is not exactly a good advice to simply add using namespace std; at the top … Read more