Dianov

Data Types and Variables - Lab (01. Convert Meters to Kilometers)

Jul 10th, 2021 (edited)
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. using System;
  2.  
  3. namespace ConvertMetersToKilometers
  4. {
  5.     class Program
  6.     {
  7.         static void Main(string[] args)
  8.         {
  9.             decimal meters = decimal.Parse(Console.ReadLine());
  10.             decimal kilometers = meters / 1000;
  11.  
  12.             Console.WriteLine($"{kilometers:F2}");
  13.         }
  14.     }
  15. }
Add Comment
Please, Sign In to add comment