I have very stupid issue i am simply taking input of on double and adding it to other double which is already declared and assign a value but sum is not showing floating point
double d = 4.0;
// Getting second double from user
double numDouble = Double.Parse(Console.ReadLine());
//Printing double number :
Console.WriteLine(d + numDouble);
result is always 4.0 + 2.0 = 6
but i want 6.0
any idea