Questions tagged «cout»

std :: cout是C ++标准库提供的用于写入标准输出流的全局流对象。



18
如何打印出向量的内容?
我想在C ++中打印出向量的内容,这是我所拥有的: #include <iostream> #include <fstream> #include <string> #include <cmath> #include <vector> #include <sstream> #include <cstdio> using namespace std; int main() { ifstream file("maze.txt"); if (file) { vector<char> vec(istreambuf_iterator<char>(file), (istreambuf_iterator<char>())); vector<char> path; int x = 17; char entrance = vec.at(16); char firstsquare = vec.at(x); if (entrance == 'S') { path.push_back(entrance); …
281 c++  vector  output  stdvector  cout 


3
cout不是std的成员
我正在练习使用多个文件和头文件等。因此,我有一个项目,该项目将两个数字加起来。很简单 这是我的文件: main.cpp #include <iostream> #include "add.h" int main() { int x = readNumber(); int y = readNumber(); writeAnswer(x + y); return(0); } io.cpp int readNumber() { int x; std::cout << "Number: "; std::cin >> x; return x; } void writeAnswer(int x) { std::cout << "Answer: "; std::cout << x; …
199 c++  io  std  member  cout 

3
未定义对'std :: cout'的引用
这是示例吗? #include <iostream> using namespace std; int main() { cout << "Hola, moondo.\n"; } 它引发错误: gcc -c main.cpp gcc -o edit main.o main.o: In function `main': main.cpp:(.text+0xa): undefined reference to `std::cout' main.cpp:(.text+0xf): undefined reference to `std::basic_ostream<char,std::char_traits<char> >& std::operator<< <std::char_traits<char>>(std::basic_ostream<char, std::char_traits<char> >&, char const*)' main.o: In function `__static_initialization_and_destruction_0(int,int)': main.cpp:(.text+0x3d): undefined reference …
193 c++  c++11  gcc  cout 

12
使用Qt时如何打印到控制台
我正在使用Qt4和C ++制作计算机图形学中的某些程序。我需要能够在运行时在控制台中打印一些变量,而不是进行调试,但是cout即使添加了这些库,它似乎也不起作用。有没有办法做到这一点?
159 c++  qt  cout 


7
为什么我不能发出字符串?
为什么我不能cout string这样: string text ; text = WordList[i].substr(0,20) ; cout << "String is : " << text << endl ; 当我这样做时,出现以下错误: 错误2错误C2679:二进制'<<':未找到采用'std :: string'类型的右侧操作数的运算符(或没有可接受的转换)c:\ users \ mollasadra \ documents \ visual studio 2008 \ projects \ barnamec \ barnamec \ barnamec.cpp 67 barnamec ** 令人惊讶的是,即使这样也不起作用: string text ; text = …
143 c++  string  cout 

8
C ++中的iostream标头的cout,cerr,clog有什么区别?什么时候使用哪个?
我尝试研究和之间的区别cout,cerr并clog在互联网上找不到完美的答案。我仍然不清楚何时使用哪个。谁能通过简单的程序向我解释,并说明何时使用哪种程序的理想情况? 我访问了该站点,该站点在cerr和上显示了一个小程序clog,但是在那获得的输出也可以使用来获得cout。因此,我对每个人的确切用法感到困惑。
97 c++  iostream  cout  clog 

8
如何使C ++ cout不使用科学计数法
double x = 1500; for(int k = 0; k<10 ; k++){ double t = 0; for(int i=0; i<12; i++){ t += x * 0.0675; x += x * 0.0675; } cout<<"Bas ana: "<<x<<"\tSon faiz: "<<t<<"\tSon ana: "<<x+t<<endl; } 这个输出 Bas ana:3284.78 Son faiz:1784.78 Son ana:5069.55 安娜(Bas ana):7193.17儿子·法兹(Son faiz):3908.4儿子·安娜(Son ana):11101.6 安娜(Bas …

2
未在此范围内声明'cout'[关闭]
这个问题不太可能对将来的访客有所帮助;它仅与较小的地理区域,特定的时间段或极为狭窄的情况(通常不适用于Internet的全球受众)有关。要获得使该问题更广泛适用的帮助,请访问帮助中心。 7年前关闭。 我有一个C ++程序: 测试文件 #include<iostream> int main() { char t = 'f'; char *t1; char **t2; cout<<t; //this causes an error, cout was not declared in this scope return 0; } 我得到错误: 未在此范围内声明“ cout” 为什么?
73 c++  iostream  cout 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.