在 C++ 中,您可以使用 std::cout
和 std::endl
結合來實現類似于 Java 中 System.out.println()
的功能
#include<iostream>
#include <iomanip> // 如果需要設置輸出格式,請包含此頭文件
#include<string>
int main() {
std::string name = "Alice";
int age = 30;
// 使用 std::cout 和 << 運算符進行格式化輸出
std::cout << "Name: "<< name << ", Age: "<< age<< std::endl;
// 如果需要設置輸出格式,例如保留小數點后兩位
double pi = 3.14159265358979323846;
std::cout<< std::fixed<< std::setprecision(2) << "PI value: " << pi << std::endl;
return 0;
}
這個示例展示了如何使用 std::cout
和 <<
運算符進行格式化輸出。如果需要設置輸出格式,例如保留小數點后兩位,可以使用 <iomanip>
頭文件中的 std::fixed
和 std::setprecision()
函數。