Need help with errors

I get many errors that I didn't use to get before.

Here is what started my program w/
-----------------------------------
#include <iostream>
#include <string>
#include <ctime>
#include <cstdlib>
#include <vector>
#include <ctype.h>
#include <locale>
#include <cstdio>
#include <cctype>

Errors I get
--------------
.Line 277 error C4430: missing type specifier - int assumed. Note: C++ does not support default-int
cout << "6. Everything now, we must assume, is in our hands. We have " << endl;

.Line 282 error C2086: 'int cout' : redefinition
LINE 282: cout << "c) T.S. Elliot " << endl;

.Line 283 error C2143: syntax error : missing ';' before '<<'
LINE 283: cout << "d) None of the above " << endl;
cout is defined in std namespace! Either introduce whole:
1
2
3
#include <iostream>
...
using namespace std;

or explicitly add infront every object:
1
2
//cout << "bla bla..." << endl;
std::cout << "bla bla..." << std::endl;
Topic archived. No new replies allowed.