ฉันต้องการcout
ที่จะออก int กับศูนย์ชั้นนำเพื่อให้ค่าที่1
จะได้รับการพิมพ์001
และความคุ้มค่าพิมพ์เป็น25
025
ฉันจะทำสิ่งนี้ได้อย่างไร
ฉันต้องการcout
ที่จะออก int กับศูนย์ชั้นนำเพื่อให้ค่าที่1
จะได้รับการพิมพ์001
และความคุ้มค่าพิมพ์เป็น25
025
ฉันจะทำสิ่งนี้ได้อย่างไร
คำตอบ:
ด้วยดังต่อไปนี้
#include <iomanip>
#include <iostream>
int main()
{
std::cout << std::setfill('0') << std::setw(5) << 25;
}
ผลลัพธ์จะเป็น
00025
setfill
ถูกตั้งค่าเป็นอักขระช่องว่าง ( ' '
) โดยค่าเริ่มต้น setw
กำหนดความกว้างของฟิลด์ที่จะพิมพ์และนั่นคือ
หากคุณสนใจที่จะทราบวิธีการจัดรูปแบบสตรีมเอาต์พุตโดยทั่วไปฉันเขียนคำตอบสำหรับคำถามอื่นหวังว่าจะเป็นประโยชน์: การจัดรูปแบบเอาต์พุตคอนโซล C ++
<iostream>
และ<iomanip>
ที่ด้านบนของไฟล์ของคุณและคุณจะต้องเขียนแต่ที่ปฏิบัติไม่ดีดังนั้นบางทีคุณควรแทนคำนำหน้าสามตัวระบุในคำตอบนี้กับusing namespace std;
std::
อีกวิธีหนึ่งในการบรรลุเป้าหมายนี้คือการใช้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
และจะเติมช่องว่างให้เต็ม
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
cout.fill( '0' );
cout.width( 3 );
cout << value;
char* or char[]
) เพื่อไม่ให้คอนโซลได้โดยตรง จริงๆแล้วฉันกำลังเขียนฟังก์ชันที่ส่งคืนสตริงที่จัดรูปแบบ
std::stringstream
ใช้
sprintf(s, "%02d-%02d-%04d", dd, mm, yy);
ที่s
เป็นchar*
และdd, mm, yy
อยู่ในint
ประเภท นี้จะเขียน02-02-1999
รูปแบบตามค่าในตัวแปร
ใน C ++ 20 คุณจะสามารถทำสิ่งต่อไปนี้
std :: cout << std :: format ("{: 03}", 25); // ปริ้น 025
ฉันจะใช้ฟังก์ชั่นต่อไปนี้ ฉันไม่ชอบ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;
}
อีกตัวอย่างหนึ่งในการแสดงผลวันที่และเวลาโดยใช้ศูนย์เป็นอักขระเติมในอินสแตนซ์ของค่าตัวเลขหลักเดียว: 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;
}
char* or char[]
) เพื่อไม่ให้คอนโซลได้โดยตรง จริงๆแล้วฉันกำลังเขียนฟังก์ชันที่ส่งคืนสตริงที่จัดรูปแบบแล้ว