cout <<演算子を使用する場合、intに先行ゼロを埋め込むにはどうすればよいですか?


回答:


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

12
@harsh使用ははstd ::にstringstream
cheshirekow

8
その後、ストリーム形式を復元することを忘れないでください。そうしないと、後で厄介な驚きが発生します。
コード嫌悪者

14
この答えは私を正しい方向に導きましたが、それは改善される可能性があります。このコードを実際に使用するには、ファイルの先頭に<iostream>とを含める必要<iomanip>があり、を記述する必要がありますがusing namespace std;、これは悪い習慣であるため、この回答の3つの識別子の前にを付ける必要がありますstd::
David Grayson

@shashwat次のコードを使用できます-std :: stringstream filename; ファイル名.fill( '0'); filename.width(5); ファイル名<< std :: to_string(i);
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空白スペースを埋めません。これにより24、パッドが設定され、空白スペースが埋められます。


10
私はこれが古い答えであることを知っていますが、書き込む予定のバッファの長さを指定できないため、sprintfは一般にあまり信頼されるべきではないことを指摘しておく必要があります。snprintfを使用すると、より安全になる傾向があります。* printf()とは対照的にストリームを使用すると、コンパイラーがコンパイル時にパラメーターの型をチェックする機会があるため、はるかに型安全です。AraKの受け入れられた回答は、タイプセーフで「標準」のC ++であり、グローバルネームスペースを汚染するヘッダーに依存していません。
マグナス

答えは、例として日付フォーマットを使用することです。ただし、表面的には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

2
@Shashwat Tripathi Use std::stringstream
AraK、

@AraKこれはターボC ++では機能しないと思います。私はそれを使用して使用するsprintf(s, "%02d-%02d-%04d", dd, mm, yy);場所sであるchar*dd, mm, yyのあるintタイプ。これは02-02-1999、変数の値に従ってフォーマットを書き込みます。
shashwat

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

1桁の値のインスタンスの埋め込み文字としてゼロを使用して日付と時刻を出力する別の例: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;
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.