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