Advertisement
Guest User

Untitled

a guest
Oct 9th, 2017
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. using System;
  2.  
  3.  
  4. namespace inchestocentimeters
  5. {
  6. class InchesToCentimeters
  7. {
  8. static void Main()
  9. {
  10. Console.WriteLine("Inches = ");
  11. double inches = Convert.ToDouble(Console.ReadLine());
  12. Console.WriteLine("Cantimeters = {0}", inches * 2.54);
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement