Monday, May 21, 2012

What is E in floating point?

What is E+3? What exactly happens here? Can we use this approach in other data types or can we only use it in floating points?



static void Main(string[] args)
{
double w = 1.7E+3;
Console.WriteLine(w);
}


Output: 1700





No comments:

Post a Comment