Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- using System;
- namespace ConvertMetersToKilometers
- {
- class Program
- {
- static void Main(string[] args)
- {
- decimal meters = decimal.Parse(Console.ReadLine());
- decimal kilometers = meters / 1000;
- Console.WriteLine($"{kilometers:F2}");
- }
- }
- }
Add Comment
Please, Sign In to add comment