Advertisement
yani-valeva

Inches_to_Centimeters

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