cout是啥?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了cout是啥?相关的知识,希望对你有一定的参考价值。
/*************
//**progam.cpp**
//**************
#include "iostream"
#include "stdio.h"
int main()
cout <<"Hello,world!\n";
cout <<"Hello,world,visual C++6.0!\n";
return 0;
在visual stdio C++6.0.net编译后为什么出现错误,说cout 是未声明标识符.
using namespace std;代表你使用的cout是STD里面的cout也就是说你在using namespace std;的作用范围外你可以使用cout干其他的,如果你不是用.h的后缀那就必须要用命名空间 参考技术B cout 是<iostream>里的输出函数 参考技术C 把#include "iostream" 改成#include <iostream>
再加上using namespace std;就可以了 参考技术D #include "iostream"
using namespace std;
int main()
cout <<"Hello,world!\n";
cout <<"Hello,world,visual C++6.0!\n";
return 0;
本回答被提问者采纳 第5个回答 2007-07-09 iostream.h
以上是关于cout是啥?的主要内容,如果未能解决你的问题,请参考以下文章