vs2015,cout提示是未定义标识符

添加 “using namespace std;”

或者这样使用cout、endl 在前面加上std::cout、std::endl

#include 
using namespace std;
int main ()

{
	std::cout <<"hello,world"<

你可能感兴趣的:(C++)