16
1
using System;
2
3
public class Program
4
{
5
public static void Main()
6
{
7
double d = 0.12e2;
8
Console.WriteLine(d);
9
10
float f = 123.45e-2f;
11
Console.WriteLine(f);
12
13
decimal m = 1.2e6m;
14
Console.WriteLine(m);
15
}
16
}
Cached Result
12
1.2345
1200000
1.2345
1200000