fork(1) download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. double a = 7.523213115434565f;
  8.  
  9. Console.WriteLine(a.ToString("N30"));
  10. Console.WriteLine((a / 2.0).ToString("N30"));
  11. Console.WriteLine((a * 0.5).ToString("N30"));
  12. }
  13. }
Success #stdin #stdout 0.01s 131520KB
stdin
Standard input is empty
stdout
7.523212909698490000000000000000
3.761606454849240000000000000000
3.761606454849240000000000000000