Respostas:
Com o seguinte,
#include <iomanip>
#include <iostream>
int main()
{
std::cout << std::setfill('0') << std::setw(5) << 25;
}
a saída será
00025
setfill
é definido como o caractere de espaço ( ' '
) por padrão. setw
define a largura do campo a ser impresso, e é isso.
Se você estiver interessado em saber como formatar os fluxos de saída em geral, escrevi uma resposta para outra pergunta, espero que seja útil: Formatando a Saída do Console C ++.
char* or char[]
) para não console diretamente. Na verdade eu estou escrevendo uma função que retorna formatado seqüência
<iostream>
e <iomanip>
na parte superior do seu arquivo, e precisará escrever using namespace std;
, mas isso é uma prática inadequada; portanto, talvez prefira os três identificadores nesta resposta std::
.
Outra maneira de conseguir isso é usar a printf()
função antiga da linguagem C
Você pode usar isso como
int dd = 1, mm = 9, yy = 1;
printf("%02d - %02d - %04d", mm, dd, yy);
Isso será impresso 09 - 01 - 0001
no console.
Você também pode usar outra função sprintf()
para gravar saída formatada em uma string como abaixo:
int dd = 1, mm = 9, yy = 1;
char s[25];
sprintf(s, "%02d - %02d - %04d", mm, dd, yy);
cout << s;
Não se esqueça de incluir o stdio.h
arquivo de cabeçalho no seu programa para essas duas funções
Você pode preencher o espaço em branco por 0 ou por outro caractere (não número).
Se você escrever algo como um %24d
especificador de formato, isso não preencherá 2
espaços em branco. Isso definirá o bloco 24
e preencherá os espaços em branco.
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
Isso produz a saída:
-12345
****-12345
-12345****
****-12345
-****12345
cout.fill( '0' );
cout.width( 3 );
cout << value;
char* or char[]
) para não console diretamente. Na verdade eu estou escrevendo uma função que retorna formatado seqüência
std::stringstream
.
sprintf(s, "%02d-%02d-%04d", dd, mm, yy);
where s
is char*
e dd, mm, yy
are do int
tipo. Isso escreverá o 02-02-1999
formato de acordo com os valores nas variáveis.
Eu usaria a seguinte função. Eu não gosto sprintf
; não faz o que eu quero !!
#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;
}
Outro exemplo para gerar data e hora usando zero como caractere de preenchimento em instâncias de valores de um dígito: 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;
}