c++ 中 cout 函數(shù)用于輸出數(shù)據(jù)到控制臺或其他輸出流,使用方法為:cout
C++ 中 cout 的用法
cout 是 C++ 編程語言中用于將數(shù)據(jù)輸出到控制臺或其他輸出流的標準庫函數(shù)。它屬于iostream 頭文件,需要在使用前進行包含。
使用方法:
cout 的基本語法如下:
<code class="cpp">cout </code>
登錄后復(fù)制登錄后復(fù)制
“輸出內(nèi)容” 是要輸出的數(shù)據(jù),可以是字符串、數(shù)字、變量或表達式。
endl 是換行符,它將光標移動到下一行。
示例:
<code class="cpp">#include <iostream> using namespace std; int main() { cout </iostream></code>
登錄后復(fù)制
輸出:
<code>你好,世界! 我的年齡是:25</code>
登錄后復(fù)制
自定義格式化輸出:
cout 可以使用格式化說明符來控制輸出數(shù)據(jù)的格式。最常用的說明符有:
說明符 | 描述 |
---|---|
%d | 整數(shù) |
%f | 浮點數(shù) |
%s | 字符串 |
示例:
<code class="cpp">#include <iostream> using namespace std; int main() { int age = 25; float height = 1.75; cout </iostream></code>
登錄后復(fù)制
輸出:
<code>我的年齡是 25,身高是 1.75 米。</code>
登錄后復(fù)制
其他用法:
重定向輸出: cout 可以重定向到文件或其他輸出流,例如:
<code class="cpp">ofstream myFile("output.txt"); cout.rdbuf(myFile.rdbuf());</code>
登錄后復(fù)制
設(shè)置輸出精度: cout 可以使用 setprecision() 方法設(shè)置浮點數(shù)的輸出精度。例如:
<code class="cpp">cout </code>
登錄后復(fù)制登錄后復(fù)制
這將輸出:3.14
注意:
cout 總是刷新其緩沖區(qū),因此輸出將立即顯示。
如果要將多個項目輸出到同一行,可以使用