Процентный формат. Выводит процентное содержание числа. По умолчанию, количество десятичных разрядов два.
Main.cs
using
System;
class
Program {
-
public
static
int
Main() {
-
float
val = 0.25f;
-
Console.WriteLine(
"{0:P}"
, val);
-
Console.WriteLine(
"{0:p3}"
, val);
-
Console.ReadKey();
-
return
0;
-
}
}
using
System;
class
Program {
-
public
static
int
Main() {
-
float
val = 0.25f;
-
Console.WriteLine(
"{0:P}"
, val);
-
Console.WriteLine(
"{0:p3}"
, val);
-
Console.ReadKey();
-
return
0;
-
}
}
25,00%
25,000%
25,000%