📅  最后修改于: 2022-03-11 14:44:46.285000             🧑  作者: Mango
. 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.