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
相似回答