| format
|
-
|
Указатель на завершающуюся нулем строку, определяющую многобайтовую, как интерпретировать эти данные.
Строка формата состоит из пробельных символов, без пробелов символы (кроме %) и спецификации преобразования. Каждая спецификация преобразования имеет следующий формат: Original: The format string consists of whitespace characters, non-whitespace characters (except %) and conversion specifications. Each conversion specification has the following format: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
вводный характер %Original: introductory % character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно) один или несколько флагов, которые изменяют поведение преобразования Original: (необязательно) one or more flags that modify the behavior of the conversion: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
-: результат преобразования влево на поле (по умолчанию это по правому краю) Original: -: the result of the conversion is left-justified within the field (by default it is right-justified)
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
+: знак подписано преобразования всегда добавляется в результате преобразования (по умолчанию результат предшествует минус только тогда, когда оно отрицательное) Original: +: the sign of signed conversions is always prepended to the result of the conversion (by default the result is preceded by minus only when it is negative)
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
' Пространстве: если в результате подписанного преобразования начинается не с знаковый характер, или пусто, пространство добавляется к результату. Он игнорируется, если + флаг присутствует.Original: space: if the result of a signed conversion does not start with a sign character, or is empty, space is prepended to the result. It is ignored if + flag is present. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
#:' альтернативные формы преобразование не выполняется. См. таблицу ниже для точного эффекта.Original: # : alternative form of the conversion is performed. See the table below for exact effects.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
0: для целочисленных и плавающих преобразования точкой, ведущих нулей используются для площадки на поле вместо' космических символов. Для чисел с плавающей запятой игнорируется если точность явно указано. Для других преобразований с помощью этого флага приводит к неопределенному поведению. Он игнорируется, если - флаг присутствует.Original: 0 : for integer and floating point number conversions, leading zeros are used to pad the field instead of space characters. For floating point numbers it is ignored if the precision is explicitly specified. For other conversions using this flag results in undefined behavior. It is ignored if - flag is present.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно) целое значение или *, который определяет минимальную ширину поля. В результате заполняется пространство' символов (по умолчанию), если требуется, слева, когда по правому краю, или справа, если по левому краю. В случае, когда * используется, ширина определяется дополнительным аргументом типа int. Если значение аргумента отрицательно, это приводит с - флаг определенных и положительных ширину поля.Original: (необязательно) integer value or * that specifies minimum field width. The result is padded with space characters (by default), if required, on the left when right-justified, or on the right if left-justified. In the case when * is used, the width is specified by an additional argument of type int. If the value of the argument is negative, it results with the - flag specified and positive field width. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно) . следует целое число или *, которая определяет точность' преобразования. В случае, когда * используется,' точностью определяется дополнительным аргументом типа int. Если значение этого аргумента отрицательно, оно игнорируется. См. таблицу ниже для точного эффекта точности' .Original: (необязательно) . followed by integer number or * that specifies precision of the conversion. In the case when * is used, the precision is specified by an additional argument of type int. If the value of this argument is negative, it is ignored. See the table below for exact effects of precision. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно)' длина модификатора, который определяет размер аргументаOriginal: (необязательно) length modifier that specifies the size of the argument The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
Преобразование формата Original: conversion format specifier The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Следующие спецификаторы формата доступны Original: The following format specifiers are available: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Conversion specifier
|
Explanation
|
Argument type
|
| length modifier
|
hh
|
h
|
(none)
|
l
|
ll
|
j
|
z
|
t
|
L
|
%
|
writes literal %. The full conversion specification must be %%.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
c
|
writes a single character
|
N/A
|
N/A
|
char
|
wchar_t
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
s
|
writes a character string
|
N/A
|
N/A
|
char*
|
wchar_t*
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
d i
|
преобразует "десятичное число подписан в стиле [-] DDDD.Original: converts a signed decimal integer' in the style [-]dddd. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. По умолчанию точность 1. Original: Precision specifies the minimum number of digits to appear. The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
|
|
|
|
|
|
|
|
N/A
|
o
|
преобразует подписан 'восьмеричное целое' в стиле [-] оооо..Original: converts a signed octal integer in the style [-]oooo. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. По умолчанию точность 1. Original: Precision specifies the minimum number of digits to appear. The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' точность возрастает, если необходимо, чтобы написать одну нуля.Original: In the alternative implementation precision is increased if necessary, to write one leading zero. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В том случае, если оба преобразованное значение и точность являются 0, одна 0 написано. Original: In that case if both the converted value and the precision are 0, single 0 is written. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
x X
|
преобразует "шестнадцатеричное целое подписан в стиле [-] HHHH.Original: converts a signed hexadecimal integer' in the style [-]hhhh. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для буквы x преобразования abcdef являются used. Original: For the x conversion letters abcdef are used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для буквы X преобразования ABCDEF являются used. Original: For the X conversion letters ABCDEF are used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. По умолчанию точность 1.Original: Precision specifies the minimum number of digits to appear. The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' 0x или 0X является приставкой к результатам, если преобразованное значение отлично от нуля.Original: In the alternative implementation 0x or 0X is prefixed to results if the converted value is nonzero. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
u
|
преобразует 'беззнаковое десятичное число в стиле' DDDD.Original: converts an unsigned decimal integer in the style dddd. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. Original: Precision specifies the minimum number of digits to appear. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность 1. Original: The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
|
|
|
|
|
|
N/A
|
f F
|
преобразует 'число с плавающей точкой' в десятичной системе счисления в стиле [-] ddd.ddd. Original: converts floating-point number to the decimal notation in the style [-]ddd.ddd. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр после десятичной точки характером. Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность 6. Original: The default precision is 6. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' символ десятичной точки написано, даже если нет следующих цифр.Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
|
|
N/A
|
N/A
|
N/A
|
N/A
|
|
e E
|
преобразует 'число с плавающей точкой' в десятичной системе счисления показателем. Original: converts floating-point number to the decimal exponent notation. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования e [-]? D.ddd' e дд является used.
Original: For the e conversion style [-]d.ddde±dd is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования E [-]? D.ddd' E дд является used.
Original: For the E conversion style [-]d.dddE±dd is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Показатель содержит по крайней мере две цифры, более цифр используются только при необходимости. Original: The exponent contains at least two digits, more digits are used only if necessary. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если значение 0, показатель также 0. Original: If the value is 0, the exponent is also 0. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр после десятичной точки характером.Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность 6. Original: The default precision is 6. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' символ десятичной точки написано, даже если нет следующих цифр.Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
a A
|
преобразует 'число с плавающей точкой' в шестнадцатеричном показателем. Original: converts floating-point number to the hexadecimal exponent notation. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования a [-]? 0x' h.hhh p D является used.
Original: For the a conversion style [-]0xh.hhhp±d is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования A [-]? 0X' h.hhh P D является used.
Original: For the A conversion style [-]0Xh.hhhP±d is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Первая цифра шестнадцатеричной является 0, если аргумент не является нормированным значением с плавающей точкой. Original: The first hexadecimal digit is 0 if the argument is not a normalized floating point value. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если значение 0, показатель также 0. Original: If the value is 0, the exponent is also 0. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр после десятичной точки характером.Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность достаточна для точного представления значения. Original: The default precision is sufficient for exact representation of the value. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' символ десятичной точки написано, даже если нет следующих цифр.Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
g G
|
преобразует "число с плавающей точкой в десятичную или десятичной экспоненты обозначение в зависимости от величины и точности'.Original: converts floating-point number to decimal or decimal exponent notation depending on the value and the precision. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля g преобразования преобразования в стиле e или f будет performed. Original: For the g conversion style conversion with style e or f will be performed.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля G преобразования преобразования в стиле E или F будет performed. Original: For the G conversion style conversion with style E or F will be performed.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Пусть P равной точности, если отлична от нуля, 6 если точность не указана, или 1 если точность равна 0. Тогда, если преобразование в стиле E будет иметь показатель XOriginal: Let P equal the precision if nonzero, 6 if the precision is not specified, or 1 if the precision is 0. Then, if a conversion with style E would have an exponent of X: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
если P> X ≥ -4, преобразование в стиле f или F и точность P - 1 - X. Original: if P > X ≥ −4, the conversion is with style f or F and precision P − 1 − X. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
В противном случае преобразование в стиле e или E и точность P - 1. Original: otherwise, the conversion is with style e or E and precision P − 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если' альтернативного представления просил нули удаляются, а также символ десятичной точки удаляются, если не дробная часть остается.Original: Unless alternative representation is requested the trailing zeros are removed, also the decimal point character is removed if no fractional part is left. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
n
|
возвращает "число записанных символов до сих пор этого вызова функции.Original: returns the number of characters written' so far by this call to the function. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В результате' написаны на значение, на которую указывает аргумент. Original: The result is written to the value pointed to by the argument. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Полная спецификация должна быть %n. Original: The complete specification must be %n. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
int*
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
p
|
writes an implementation defined character sequence defining a pointer.
|
N/A
|
N/A
|
void*
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
'Примечание'Original: Notes: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Плавающей точкой функции преобразования конвертировать бесконечности inf или infinity. Какой из них используется реализации defined. Original: The floating point conversion functions convert infinity to inf or infinity. Which one is used is implementation defined.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Не-а-число преобразуется в nan или nan(char_sequence). Какой из них используется реализации defined. Original: Not-a-number is converted to nan or nan(char_sequence). Which one is used is implementation defined.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Преобразования F, E, G, A выход INF, INFINITY, NAN вместо. Original: The conversions F, E, G, A output INF, INFINITY, NAN instead. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
Original: pointer to a null-terminated multibyte string specifying how to interpret the data.
Строка формата состоит из пробельных символов, без пробелов символы (кроме %) и спецификации преобразования. Каждая спецификация преобразования имеет следующий формат: Original: The format string consists of whitespace characters, non-whitespace characters (except %) and conversion specifications. Each conversion specification has the following format: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
вводный характер %Original: introductory % character The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно) один или несколько флагов, которые изменяют поведение преобразования Original: (необязательно) one or more flags that modify the behavior of the conversion: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
-: результат преобразования влево на поле (по умолчанию это по правому краю) Original: -: the result of the conversion is left-justified within the field (by default it is right-justified)
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
+: знак подписано преобразования всегда добавляется в результате преобразования (по умолчанию результат предшествует минус только тогда, когда оно отрицательное) Original: +: the sign of signed conversions is always prepended to the result of the conversion (by default the result is preceded by minus only when it is negative)
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
' Пространстве: если в результате подписанного преобразования начинается не с знаковый характер, или пусто, пространство добавляется к результату. Он игнорируется, если + флаг присутствует.Original: space: if the result of a signed conversion does not start with a sign character, or is empty, space is prepended to the result. It is ignored if + flag is present. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
#:' альтернативные формы преобразование не выполняется. См. таблицу ниже для точного эффекта.Original: # : alternative form of the conversion is performed. See the table below for exact effects.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
0: для целочисленных и плавающих преобразования точкой, ведущих нулей используются для площадки на поле вместо' космических символов. Для чисел с плавающей запятой игнорируется если точность явно указано. Для других преобразований с помощью этого флага приводит к неопределенному поведению. Он игнорируется, если - флаг присутствует.Original: 0 : for integer and floating point number conversions, leading zeros are used to pad the field instead of space characters. For floating point numbers it is ignored if the precision is explicitly specified. For other conversions using this flag results in undefined behavior. It is ignored if - flag is present.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно) целое значение или *, который определяет минимальную ширину поля. В результате заполняется пространство' символов (по умолчанию), если требуется, слева, когда по правому краю, или справа, если по левому краю. В случае, когда * используется, ширина определяется дополнительным аргументом типа int. Если значение аргумента отрицательно, это приводит с - флаг определенных и положительных ширину поля.Original: (необязательно) integer value or * that specifies minimum field width. The result is padded with space characters (by default), if required, on the left when right-justified, or on the right if left-justified. In the case when * is used, the width is specified by an additional argument of type int. If the value of the argument is negative, it results with the - flag specified and positive field width. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно) . следует целое число или *, которая определяет точность' преобразования. В случае, когда * используется,' точностью определяется дополнительным аргументом типа int. Если значение этого аргумента отрицательно, оно игнорируется. См. таблицу ниже для точного эффекта точности' .Original: (необязательно) . followed by integer number or * that specifies precision of the conversion. In the case when * is used, the precision is specified by an additional argument of type int. If the value of this argument is negative, it is ignored. See the table below for exact effects of precision. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
(необязательно)' длина модификатора, который определяет размер аргументаOriginal: (необязательно) length modifier that specifies the size of the argument The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
Преобразование формата Original: conversion format specifier The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Следующие спецификаторы формата доступны Original: The following format specifiers are available: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Conversion specifier
|
Explanation
|
Argument type
|
| length modifier
|
hh
|
h
|
(none)
|
l
|
ll
|
j
|
z
|
t
|
L
|
%
|
writes literal %. The full conversion specification must be %%.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
c
|
writes a single character
|
N/A
|
N/A
|
char
|
wchar_t
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
s
|
writes a character string
|
N/A
|
N/A
|
char*
|
wchar_t*
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
d i
|
преобразует "десятичное число подписан в стиле [-] DDDD.Original: converts a signed decimal integer' in the style [-]dddd. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. По умолчанию точность 1. Original: Precision specifies the minimum number of digits to appear. The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
|
|
|
|
|
|
|
|
N/A
|
o
|
преобразует подписан 'восьмеричное целое' в стиле [-] оооо..Original: converts a signed octal integer in the style [-]oooo. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. По умолчанию точность 1. Original: Precision specifies the minimum number of digits to appear. The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' точность возрастает, если необходимо, чтобы написать одну нуля.Original: In the alternative implementation precision is increased if necessary, to write one leading zero. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В том случае, если оба преобразованное значение и точность являются 0, одна 0 написано. Original: In that case if both the converted value and the precision are 0, single 0 is written. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
x X
|
преобразует "шестнадцатеричное целое подписан в стиле [-] HHHH.Original: converts a signed hexadecimal integer' in the style [-]hhhh. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для буквы x преобразования abcdef являются used. Original: For the x conversion letters abcdef are used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для буквы X преобразования ABCDEF являются used. Original: For the X conversion letters ABCDEF are used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. По умолчанию точность 1.Original: Precision specifies the minimum number of digits to appear. The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' 0x или 0X является приставкой к результатам, если преобразованное значение отлично от нуля.Original: In the alternative implementation 0x or 0X is prefixed to results if the converted value is nonzero. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
u
|
преобразует 'беззнаковое десятичное число в стиле' DDDD.Original: converts an unsigned decimal integer in the style dddd. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр появляются. Original: Precision specifies the minimum number of digits to appear. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность 1. Original: The default precision is 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если оба преобразованное значение и точность являются 0 в результате преобразования никакие символы. Original: If both the converted value and the precision are 0 the conversion results in no characters. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
|
|
|
|
|
|
N/A
|
f F
|
преобразует 'число с плавающей точкой' в десятичной системе счисления в стиле [-] ddd.ddd. Original: converts floating-point number to the decimal notation in the style [-]ddd.ddd. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр после десятичной точки характером. Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность 6. Original: The default precision is 6. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' символ десятичной точки написано, даже если нет следующих цифр.Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
|
|
N/A
|
N/A
|
N/A
|
N/A
|
|
e E
|
преобразует 'число с плавающей точкой' в десятичной системе счисления показателем. Original: converts floating-point number to the decimal exponent notation. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования e [-]? D.ddd' e дд является used.
Original: For the e conversion style [-]d.ddde±dd is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования E [-]? D.ddd' E дд является used.
Original: For the E conversion style [-]d.dddE±dd is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Показатель содержит по крайней мере две цифры, более цифр используются только при необходимости. Original: The exponent contains at least two digits, more digits are used only if necessary. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если значение 0, показатель также 0. Original: If the value is 0, the exponent is also 0. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр после десятичной точки характером.Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность 6. Original: The default precision is 6. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' символ десятичной точки написано, даже если нет следующих цифр.Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
a A
|
преобразует 'число с плавающей точкой' в шестнадцатеричном показателем. Original: converts floating-point number to the hexadecimal exponent notation. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования a [-]? 0x' h.hhh p D является used.
Original: For the a conversion style [-]0xh.hhhp±d is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования A [-]? 0X' h.hhh P D является used.
Original: For the A conversion style [-]0Xh.hhhP±d is used.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Первая цифра шестнадцатеричной является 0, если аргумент не является нормированным значением с плавающей точкой. Original: The first hexadecimal digit is 0 if the argument is not a normalized floating point value. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если значение 0, показатель также 0. Original: If the value is 0, the exponent is also 0. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
' Precision определяет минимальное количество цифр после десятичной точки характером.Original: Precision specifies the minimum number of digits to appear after the decimal point character. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
По умолчанию точность достаточна для точного представления значения. Original: The default precision is sufficient for exact representation of the value. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В реализации альтернативных' символ десятичной точки написано, даже если нет следующих цифр.Original: In the alternative implementation decimal point character is written even if no digits follow it. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
g G
|
преобразует "число с плавающей точкой в десятичную или десятичной экспоненты обозначение в зависимости от величины и точности'.Original: converts floating-point number to decimal or decimal exponent notation depending on the value and the precision. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля g преобразования преобразования в стиле e или f будет performed. Original: For the g conversion style conversion with style e or f will be performed.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля G преобразования преобразования в стиле E или F будет performed. Original: For the G conversion style conversion with style E or F will be performed.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Пусть P равной точности, если отлична от нуля, 6 если точность не указана, или 1 если точность равна 0. Тогда, если преобразование в стиле E будет иметь показатель XOriginal: Let P equal the precision if nonzero, 6 if the precision is not specified, or 1 if the precision is 0. Then, if a conversion with style E would have an exponent of X: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
если P> X ≥ -4, преобразование в стиле f или F и точность P - 1 - X. Original: if P > X ≥ −4, the conversion is with style f or F and precision P − 1 − X. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
-
В противном случае преобразование в стиле e или E и точность P - 1. Original: otherwise, the conversion is with style e or E and precision P − 1. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Если' альтернативного представления просил нули удаляются, а также символ десятичной точки удаляются, если не дробная часть остается.Original: Unless alternative representation is requested the trailing zeros are removed, also the decimal point character is removed if no fractional part is left. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Для стиля преобразования бесконечность и не-число см. примечания. Original: For infinity and not-a-number conversion style see notes. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
n
|
возвращает "число записанных символов до сих пор этого вызова функции.Original: returns the number of characters written' so far by this call to the function. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
В результате' написаны на значение, на которую указывает аргумент. Original: The result is written to the value pointed to by the argument. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Полная спецификация должна быть %n. Original: The complete specification must be %n. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
N/A
|
N/A
|
int*
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
p
|
writes an implementation defined character sequence defining a pointer.
|
N/A
|
N/A
|
void*
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
N/A
|
'Примечание'Original: Notes: The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Плавающей точкой функции преобразования конвертировать бесконечности inf или infinity. Какой из них используется реализации defined. Original: The floating point conversion functions convert infinity to inf or infinity. Which one is used is implementation defined.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Не-а-число преобразуется в nan или nan(char_sequence). Какой из них используется реализации defined. Original: Not-a-number is converted to nan or nan(char_sequence). Which one is used is implementation defined.
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
Преобразования F, E, G, A выход INF, INFINITY, NAN вместо. Original: The conversions F, E, G, A output INF, INFINITY, NAN instead. The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|
The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions.
|