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


Answers:


369

通过以下内容,

#include <iomanip>
#include <iostream>

int main()
{
    std::cout << std::setfill('0') << std::setw(5) << 25;
}

输出将是

00025

setfill' '默认情况下设置为空格字符()。setw设置要打印的字段的宽度,仅此而已。


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


3
但是..如何将格式化的输出写入字符串(char* or char[])而不直接进行控制台。实际上,我正在写一个返回格式化字符串的函数
shashwat 2012年

12
@harsh使用std :: stringstream的
cheshirekow

8
完成此操作后,请不要忘记恢复流格式,否则以后您会感到讨厌。
Code Abominator 2015年

14
这个答案向我指出了正确的方向,但可以改进。要实际使用此代码,您将需要在文件的顶部包含<iostream><iomanip>,并且需要编写using namespace std;,但这是一种不好的做法,因此也许应在答案中为这三个标识符加上前缀std::
戴维·格雷森

@shashwat,您可以使用以下代码-std :: stringstream filename; filename.fill('0'); filename.width(5); filename << std :: to_string(i);
帕特尔王子(Patel Patel),

45

实现此目的的另一种方法是使用printf()C语言的旧功能

您可以像这样使用

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

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

您还可以使用另一个函数sprintf()将格式化的输出写入字符串,如下所示:

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

不要忘记stdio.h在程序中包含这两个功能的头文件

注意事项:

您可以用0或其他字符(非数字)填充空白。
如果您确实编写了诸如%24d格式说明符之类的内容,则不会填入2空格。这会将pad设置为24并将填充空白。


10
我知道这是一个古老的答案,但是仍然应该指出,由于您无法指定应该写入的缓冲区的长度,因此一般不应该太信任sprintf。使用snprintf往往更安全。与* printf()相反,使用流也更安全,因为编译器有机会在编译时检查参数的类型。AraK可接受的答案是类型安全和“标准” C ++,并且它不依赖会破坏全局名称空间的标头。
Magnus 2014年

答案是以日期格式为例。但是请注意,尽管它看起来与表面上的ISO_8601(en.wikipedia.org/wiki/ISO_8601)类似,但它以奇异时间格式为例。
varepsilon

32
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

18
cout.fill( '0' );    
cout.width( 3 );
cout << value;

但是..如何将格式化的输出写入字符串(char* or char[])而不直接进行控制台。实际上,我正在编写一个返回格式化字符串的函数
shashwat 2012年

2
@Shashwat Tripathi使用std::stringstream
AraK 2012年

@AraK我认为这在Turbo C ++中不起作用。我用它用sprintf(s, "%02d-%02d-%04d", dd, mm, yy);在那里schar*dd, mm, yy是的int类型。这将02-02-1999根据变量中的值写入格式。
shashwat 2012年

3

我将使用以下功能。我不喜欢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;
    }

    // Set up small 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;
}

2

在单个数字值的实例上使用零作为填充字符输出日期和时间的另一个示例: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;
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.