String LOA, LWL, Beam, Displacement, SailArea;
LOA = stdin.readLine(); //(LOA) Total Length of Vessel
System.out.println("LOA: " + (LOA));
System.out.println("HullSpeed: " + (1.34 * Math.pow(LWL, 0.5)));
Can I get help? I'm new to java and have no idea how to fix this error with the last LWL.
incompatible types: String cannot be converted to double
LWL?