在C++中,cout
是用于向標(biāo)準(zhǔn)輸出流(通常是屏幕)打印信息的對(duì)象。它位于iostream
庫(kù)中,因此在使用之前需要包含該庫(kù)。要使用cout
,首先需要?jiǎng)?chuàng)建一個(gè)std::ostream
對(duì)象,通常使用std::cout
來訪問它。
以下是一些基本示例,說明如何使用cout
:
#include <iostream>
cout
:int main() {
// 使用cout打印一行文本
std::cout << "Hello, World!" << std::endl;
// 打印整數(shù)和浮點(diǎn)數(shù)
int age = 25;
double salary = 50000.50;
std::cout << "Age: " << age << std::endl;
std::cout << "Salary: " << salary << std::endl;
// 使用cout打印字符和字符串
char grade = 'A';
std::string name = "John Doe";
std::cout << "Grade: " << grade << std::endl;
std::cout << "Name: " << name << std::endl;
return 0;
}
在這個(gè)示例中,我們使用了以下cout
操作符重載:
<<
:用于將數(shù)據(jù)插入到輸出流中。std::endl
:用于插入換行符并刷新輸出緩沖區(qū)。cout
還支持格式化輸出,例如使用std::setprecision
設(shè)置浮點(diǎn)數(shù)精度,使用std::setw
設(shè)置字段寬度等。以下是一個(gè)使用格式化輸出的示例:
#include <iostream>
#include <iomanip>
int main() {
double pi = 3.14159265358979323846;
// 使用cout和格式化輸出打印圓周率
std::cout << "Pi with 5 decimal places: " << std::fixed << std::setprecision(5) << pi << std::endl;
std::cout << "Pi with 10 decimal places: " << std::fixed << std::setprecision(10) << pi << std::endl;
return 0;
}
在這個(gè)示例中,我們使用了std::fixed
和std::setprecision
來設(shè)置浮點(diǎn)數(shù)的輸出格式。