compiling?

anyone help me out with these syntax errors? tell me where my program is messed up

public class Cube

{

public static void main(String [] args)

{

double height = 3.0; \\ inches

double cubeVolume = height * height * height;

double surfaceArea = 8 * height

System.out.print("Volume = "

System.out.println(cubeVolume);

System.out.print("Surface area = );

System.out.println(surfaceArea);

}

[475 byte] By [l2k882001a] at [2007-10-2 10:37:00]
«« hi dudes....
»» Hi..
# 1

public class Cube

{

public static void main(String [] args)

{

double height = 3.0; \\ inches

double cubeVolume = height * height * height;

double surfaceArea = 8 * height ;

System.out.print("Volume = " );

System.out.println(cubeVolume);

System.out.print("Surface area = );

System.out.println(surfaceArea);

}

}

better?

AliPanga at 2007-7-13 2:40:37 > top of Java-index,Developer Tools,Java Compiler...
# 2
yes thank you
l2k882001a at 2007-7-13 2:40:37 > top of Java-index,Developer Tools,Java Compiler...
# 3
There is a subtle difference between / and \double height = 3.0; // inches
BIJ001a at 2007-7-13 2:40:37 > top of Java-index,Developer Tools,Java Compiler...