cout << 연산자를 사용할 때 선행 0으로 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 사용은 표준 : 이제 stringstream
cheshirekow

8
그렇게 한 후에 스트림 형식을 복원하는 것을 잊지 마십시오.
Code Abominator

14
이 대답은 올바른 방향으로 나를 지적했지만 향상 될 수 있습니다. 실제로이 코드를 사용하려면 파일 상단에 파일 을 포함 <iostream>시키고 <iomanip>맨 위에 작성 using namespace std;해야합니다 std::.
David Grayson

@ shashwat 당신은 다음 코드를 사용할 수 있습니다-std :: stringstream filename; filename.fill ( '0'); filename.width (5); 파일 이름 << std :: to_string (i);
프린스 파텔

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 ++이며 전역 네임 스페이스를 독살하는 헤더에 의존하지 않습니다.
Magnus

대답은 날짜 형식을 예로 사용합니다. 그러나 표면에서 ISO_8601과 비슷해 보이지만 이국적인 시간 형식을 예로 사용하고 있습니다 ( en.wikipedia.org/wiki/ISO_8601 ).
varepsilon

31
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 사용 std::stringstream.
AraK

@AraK Turbo C ++에서는 이것이 작동하지 않을 것이라고 생각합니다. 나는 그것을 사용하여 사용하는 sprintf(s, "%02d-%02d-%04d", dd, mm, yy);s이다 char*dd, mm, yy의 있습니다 int유형입니다. 02-02-1999변수의 값에 따라 형식 을 씁니다 .
shashwat

3

C ++ 20에서는 다음을 수행 할 수 있습니다.

std :: cout << std :: format ( "{: 03}", 25); // 025를 인쇄합니다

1

다음 기능을 사용합니다. 나는 싫어 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;
}

1

단일 숫자 값의 인스턴스에서 채우기 문자로 0을 사용하여 날짜 및 시간을 출력하는 또 다른 예 : 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.