viraco4a

03. Miles to Kilometers

May 22nd, 2018
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. using System;
  2.  
  3. namespace Greeting
  4. {
  5. class Program
  6. {
  7. static void Main()
  8. {
  9. double miles = double.Parse(Console.ReadLine());
  10. double km = miles * 1.60934;
  11. Console.WriteLine($"{km:f2}");
  12. }
  13. }
  14. }
Advertisement
Add Comment
Please, Sign In to add comment