Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- namespace InchesToCentimeters
- {
- class Program
- {
- static void Main(string[] args)
- {
- double inches = double.Parse(Console.ReadLine());
- double centimeters = inches * 2.54;
- Console.WriteLine(centimeters);
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement