Hi guys,
I am working on an assignment for a class of mine (Java) and I am really frustrated with it.
This was my very last attempt (out of like 20)...
System.out.print( "Enter temperature in Celsius to convert to Fahrenheit: " );
double c = kbinput.nextInt();
double f = ( 9.0/5)*c + 32;
System.out.println( "The temperature in Fahrenheit is: " + f + " degrees. " );
I don't get any specific errors from his "grading compiler"... it only says possible errors (1) found...