3. Create a JAVA program that will input a value of measure in inches and output its equivalent in measure feet. Conversion Factor: 12 inches = 1 foot
import java.util.Scanner;
public class Foot {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
while (true) {
double inches;
inches = sc.nextDouble();
System.out.println(inches / 12);
}
}
}