在 c++ 中,字符“\n”表示換行符,可通過以下方式使用:使用 cout
C++ 中 \n 的用法
在 C++ 編程語言中,字符 ‘\n’ 表示換行符。它用于將輸出移動到下一行。
用法:
可以使用 cout
可以使用 endl 操縱符,它將輸出移動到下一行并刷新輸出流。
示例:
<code class="cpp">#include <iostream> using namespace std; int main() { cout </iostream></code>
登錄后復制
輸出:
<code>Hello World</code>
登錄后復制
注意:
\n 的使用在不同的操作系統上可能會有所不同。例如,在 Windows 中 \n 對應于 \r\n,而在 UNIX/Linux 系統中 \n 表示換行。
endl 和 “\n” 在大多數情況下是等價的,但 endl 可以在某些情況下提供更好的可移植性。