Guest User

Untitled

a guest
Apr 25th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Module cmtoinches
  2.     Sub main()
  3.         Dim sinCentimeter, sinInches As Single
  4.  
  5.         Console.WriteLine("Enter the value in centimeters")
  6.         sinCentimeter = Console.ReadLine
  7.  
  8.         sinInches = sinCentimeter / 2.5
  9.  
  10.         Console.WriteLine("In inches that's {0}", sinInches)
  11.  
  12.         Console.ReadLine()
  13.  
  14.     End Sub
Add Comment
Please, Sign In to add comment