使用C 輸出運算子列印前導零
C 輸出運算子(
#include <iostream> #include <iomanip> using namespace std; int main() { // Print a 5-digit ZIP code with leading zeros int zipCode = 12345; cout << setw(5) << setfill('0') << zipCode << endl; // Output: "012345" return 0; }
setw() 操縱器設定欄位的最小欄位寬度。在本例中,它將最小寬度設為 5 個字元。 setfill() 操縱器設定用於填滿欄位的字元。在這種情況下,它將填充字元設為“0”,這會導致前導零。
其他 IO 操縱器:
注意:
以上是如何使用輸出運算子在 C 中列印前導零?的詳細內容。更多資訊請關注PHP中文網其他相關文章!