奥礼网
新记
cout<<"score="<<score<<endl; 在c++语句中endl是做什么的?
cout<<"score="<<score<<endl;在c++语句中endl是做什么的?
举报该文章
其他看法
第1个回答 2014-01-25
操作符,代表end of line,可以刷输出流,它等于'\n'和flush的组合,下面的代码是一样的
std::cout << std::endl;
std::cout << '\n' << std::flush;
具体可以看这里
http://stackoverflow.com/questions/213907/c-stdendl-vs-n
第2个回答 2014-01-25
endl是换行,类似C语言中的\n
相似回答
大家正在搜
相关问题
c++ num<<cout<<endl的<<是有什么用?
C++ 中 语句cout<<(short) 32768<<e...
cout<<"num: "<<::i<<endl; 在什么请...
c++中cout<<"disCon"<<endl;是什么意思
c++里 cout<<a[i]<<" "; cout<<en...
在C++中输出cout<<加输出内容后面加与不加<<endl...
C++中的空引号起什么作用啊,譬如:cout<<' '<<e...
c++中,cout<<d.a<<'\t'<<d.b<<end...