如何使用cout <<运算符填充前导零的int?

我想cout输出一个前导零的整数,所以值1将打印为001和值25打印为025 ..你明白了..我怎么能做到这一点?

谢谢。

首先包含<iomanip> ,然后:

 cout << setfill('0') << setw(5) << 25; output: 00025 

setfill默认设置为space ' 'setw设置要打印的字段的宽度,就是这样。


如果您有兴趣了解如何格式化输出stream,我为另一个问题写了一个答案,希望它是有用的: 格式化C ++控制台输出。

另一种方法是使用C语言的旧的printf()函数

你可以使用这个

 int dd = 1, mm = 9, yy = 1; printf("%02d - %02d - %04d", mm, dd, yy); 

这将在控制台上打印09 - 01 - 0001

您也可以使用其他函数sprintf()将格式化输出写入如下的string:

 int dd = 1, mm = 9, yy = 1; char s[25]; sprintf(s, "%02d - %02d - %04d", mm, dd, yy); cout << s; 

不要忘记在你的程序中包含stdio.h头文件以实现这两个function

需要注意的是:

您可以通过0或其他字符(不是数字)来填充空格。
如果你写的东西像%24d格式说明符比这不会填充2空格。 这将设置填充到24 ,将填补空白。

 cout.fill('*'); cout << -12345 << endl; // print default value with no field width cout << setw(10) << -12345 << endl; // print default with field width cout << setw(10) << left << -12345 << endl; // print left justified cout << setw(10) << right << -12345 << endl; // print right justified cout << setw(10) << internal << -12345 << endl; // print internally justified 

这产生输出:

 -12345 ****-12345 -12345**** ****-12345 -****12345 
 cout.fill( '0' ); cout.width( 3 ); cout << value; 

我会使用以下function。 我不喜欢sprintf它不会做我想要的!

 #define hexchar(x) ((((x)&0x0F)>9)?((x)+'A'-10):((x)+'0')) typedef signed long long Int64; // special printf for numbers only // see formatting information below // Print the number "n" in the given "base" // using exactly "numDigits" // print +/- if signed flag "isSigned" is TRUE // use the character specified in "padchar" to pad extra characters // // Examples: // sprintfNum(pszBuffer, 6, 10, 6, TRUE, ' ', 1234); --> " +1234" // sprintfNum(pszBuffer, 6, 10, 6, FALSE, '0', 1234); --> "001234" // sprintfNum(pszBuffer, 6, 16, 6, FALSE, '.', 0x5AA5); --> "..5AA5" void sprintfNum(char *pszBuffer, int size, char base, char numDigits, char isSigned, char padchar, Int64 n) { char *ptr = pszBuffer; if (!pszBuffer) { return; } char *p, buf[32]; unsigned long long x; unsigned char count; // prepare negative number if( isSigned && (n < 0) ) { x = -n; } else { x = n; } // setup little string buffer count = (numDigits-1)-(isSigned?1:0); p = buf + sizeof (buf); *--p = '\0'; // force calculation of first digit // (to prevent zero from not printing at all!!!) *--p = (char)hexchar(x%base); x = x / base; // calculate remaining digits while(count--) { if(x != 0) { // calculate next digit *--p = (char)hexchar(x%base); x /= base; } else { // no more digits left, pad out to desired length *--p = padchar; } } // apply signed notation if requested if( isSigned ) { if(n < 0) { *--p = '-'; } else if(n > 0) { *--p = '+'; } else { *--p = ' '; } } // print the string right-justified count = numDigits; while(count--) { *ptr++ = *p++; } return; } 

另一个使用零作为单个数字值的实例上的填充字符输出date和时间的示例:2017-06-04 18:13:02

 #include "stdafx.h" #include <iostream> #include <iomanip> #include <ctime> using namespace std; int main() { time_t t = time(0); // get time now struct tm * now = localtime(&t); cout.fill('0'); cout << (now->tm_year + 1900) << '-' << setw(2) << (now->tm_mon + 1) << '-' << setw(2) << now->tm_mday << ' ' << setw(2) << now->tm_hour << ':' << setw(2) << now->tm_min << ':' << setw(2) << now->tm_sec << endl; return 0; }