📌  相关文章
📜  .带有插入运算符 (<<) 的 cout 用于打印语句 - C++ 代码示例

📅  最后修改于: 2022-03-11 14:44:46.285000             🧑  作者: Mango

代码示例1
. The cout with the insertion operator (<<) is used to print a statement..
Standard Output (cout) cout is used in conjunction with the 
insertion operator, which is written as << (two "less than" signs). 
cout << "This is a sentence." ; cout << "This is another sentence." ; 
will be shown on the screen one following the other without any 
line break between them: ... First sentence.