Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace _03._Miles_to_Kilometers
- {
- class Program
- {
- static void Main(string[] args)
- {
- double miles = double.Parse(Console.ReadLine());
- double milesToKm = miles * 1.60934;
- Console.WriteLine($"{milesToKm:f2}");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment