Advertisement
Guest User

Untitled

a guest
Apr 21st, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1.  
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7.  
  8. namespace ConsoleApplication7
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. Console.Write("inches = ");
  15. double inches = double.Parse(Console.ReadLine());
  16. double centimeters = inches * 2.54;
  17. Console.Write("Centimeters = ");
  18. Console.WriteLine(centimeters);
  19. }
  20. }
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement