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?
E+3
static void Main(string[] args) { double w = 1.7E+3; Console.WriteLine(w); }
Output: 1700
No comments:
Post a Comment