用cout编写c++时为什么会有报出函数没有声明的错误?
4个回答
2016-02-04 · 百度知道合伙人官方认证企业
育知同创教育
1【专注:Python+人工智能|Java大数据|HTML5培训】 2【免费提供名师直播课堂、公开课及视频教程】 3【地址:北京市昌平区三旗百汇物美大卖场2层,微信公众号:yuzhitc】
向TA提问
关注
展开全部
用cout编写c++时报出函数没有声明的错误是因为没有include到所要引用的库。
cout所在的库是iostream,所以要include进来,其他库也类似。
举例:
#include <locale>
#include <iostream>
#include <string>
using namespace std;
int main()
{
string Test;
int count = 0;
cout << "String ?: ";
cin >> Test;
cin.get();
for(int i = 0; i < Test.length(); i++)
{
char c = Test[i];
if(isupper(c) == true)
{
count += 1;
}
}
cout所在的库是iostream,所以要include进来,其他库也类似。
举例:
#include <locale>
#include <iostream>
#include <string>
using namespace std;
int main()
{
string Test;
int count = 0;
cout << "String ?: ";
cin >> Test;
cin.get();
for(int i = 0; i < Test.length(); i++)
{
char c = Test[i];
if(isupper(c) == true)
{
count += 1;
}
}
展开全部
cout 如果你前面没有声明命名空间的话 不能直接使用。可以std::cout 或者直接在全局声明
using namespace std;
using namespace std;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一定要加上头文件和标准命名空间才能使用cout
#include <iostream>
using namespace std ;
这样才可以有直接使用cout
cout << "hello" ;
若只有头文件,没有命名空间,则使用前要加前缀
#include <iostream>
std::cout << "hello" ;
#include <iostream>
using namespace std ;
这样才可以有直接使用cout
cout << "hello" ;
若只有头文件,没有命名空间,则使用前要加前缀
#include <iostream>
std::cout << "hello" ;
追问
加了的。
追答
提供代码
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
新版C++ 的cout 需要写成 std::cout。
或者在main函数前声明命名空间
using namespace std;
或者在main函数前声明命名空间
using namespace std;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询