Format
using System;
class MainClass
{
static void Main()
{
double MyDouble = 12.345678;
Console.WriteLine("{0,-10:E3} -- Sci. Notation, 3 dec places", MyDouble);
}
}
Output 1.235E+001 -- Sci. Notation, 3 dec places
|
HTML code for linking to this page:
Related in same category :
-
-
-
-
-
-
-
-
-
-
-
|