我想cout
输出一个带前导零的 int,因此该值1
将打印为001
,而该值25
打印为025
. 我怎样才能做到这一点?
问问题
279734 次
7 回答
442
有了以下内容,
#include <iomanip>
#include <iostream>
int main()
{
std::cout << std::setfill('0') << std::setw(5) << 25;
}
输出将是
00025
setfill
默认设置为空格字符 ( ' '
)。setw
设置要打印的字段的宽度,就是这样。
如果您有兴趣了解如何格式化输出流,我为另一个问题写了一个答案,希望它有用: 格式化 C++ 控制台输出。
于 2009-11-11T11:16:58.370 回答
54
实现这一点的另一种方法是使用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
并填充空格。
于 2012-12-23T12:54:07.743 回答
39
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
于 2014-10-12T09:27:42.067 回答
18
在 C++20 中,您将能够:
std::cout << std::format("{:03}", 25); // prints 025
同时你可以使用基于的 {fmt}库std::format
。
免责声明:我是 {fmt} 和 C++20 的作者std::format
。
于 2020-06-25T14:57:28.747 回答
17
cout.fill( '0' );
cout.width( 3 );
cout << value;
于 2009-11-11T11:17:50.770 回答
3
在单个数字值的实例上使用零作为填充字符输出日期和时间的另一个示例: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;
}
于 2017-06-14T23:03:39.900 回答
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;
}
于 2013-03-15T02:31:21.540 回答