std::cout
是 C++ 標準庫中的一個非常有用的對象,它允許你向標準輸出流(通常是屏幕)打印數據。要使用 std::cout
,首先需要包含 <iostream>
頭文件,然后使用 std
命名空間(或者使用 using namespace std;
語句)。
下面是一些基本示例,展示了如何使用 std::cout
:
#include <iostream>
int main() {
int number = 42;
std::cout << "The number is: " << number << std::endl;
return 0;
}
#include <iostream>
int main() {
double pi = 3.14159;
std::cout << "The value of pi is: " << pi << std::endl;
return 0;
}
#include <iostream>
int main() {
std::string message = "Hello, World!";
std::cout << message << std::endl;
return 0;
}
std::setw
和 std::setprecision
控制輸出寬度和精度:#include <iostream>
#include <iomanip>
int main() {
double number = 3.14159;
std::cout << std::setw(10) << std::setprecision(5) << number << std::endl;
return 0;
}
在這個例子中,std::setw(10)
設置輸出寬度為 10 個字符,std::setprecision(5)
設置浮點數的小數點后的位數為 5 位。輸出結果將是 3.14159
,占據 10 個字符的寬度。