在C++中,cout
是一個標準輸出流對象,用于將數據輸出到控制臺。cout
對象提供了<<
操作符重載,可以用來將各種類型的數據輸出到控制臺。
cout
輸出語句的一般規則如下:
<<
操作符,將字符串放置在<<
操作符的右側。<<
操作符,將變量放置在<<
操作符的右側。<<
操作符,將字符串和變量依次放置在<<
操作符的右側。setw()
函數來設置輸出的寬度,使用setprecision()
函數來設置輸出浮點數的精度等。以下是一些示例:
#include <iostream>
#include <iomanip>
int main() {
int num = 10;
float pi = 3.14159;
std::string str = "Hello, World!";
// 輸出字符串
std::cout << "This is a string." << std::endl;
// 輸出變量
std::cout << num << std::endl;
// 輸出多個變量和字符串
std::cout << "The value of num is: " << num << std::endl;
// 輸出特定格式的數據
std::cout << "The value of pi is: " << std::setprecision(3) << pi << std::endl;
return 0;
}
運行以上代碼將輸出:
This is a string.
10
The value of num is: 10
The value of pi is: 3.14