In this program we will convert from miles to kilometers! You are given a variable distanceInMiles and we want to print the value of it when converted to kilometers. 1 mile roughly equals 1.6 kilometers You need to output a single line containing the following statement
distanceInMiles miles equal distanceInMiles * 1.6 kilometers! You will need to replace distanceInMiles above with the value of the variable, for example
Hint: you can always mix System.out.print() with System.out.println() to print different things in the same line
Test your solution here
when it passes, copy it and submit it here so your coach can grade it.