using System;
using System.Collections.Generic;
namespace App
{
class Program
{
static void Main(string[] args)
{
Console.Write("Enter pounds: ");
double pounds = double.Parse(Console.ReadLine());
double kilograms = pounds * 0.454;
Console.WriteLine("Kilograms: " + kilograms.ToString());
Console.ReadLine();
}
}
}
Comments
Leave a comment