fork download
  1. class Moon{
  2. public static void main (String args []) {
  3. double eatrh_weight, moon_weight;
  4. eatrh_weight = 67;
  5. moon_weight = eatrh_weight * 0.17;
  6. System.out.println (eatrh_weight +" earth kg is equal to " moon_weight + " moon kg.");
  7. }
  8. }
Compilation error #stdin compilation error #stdout 0s 0KB
stdin
Standard input is empty
compilation info
Main.java:6: error: ')' expected
        System.out.println (eatrh_weight +" earth kg is equal to " moon_weight + " moon kg.");
                                                                  ^
Main.java:6: error: not a statement
        System.out.println (eatrh_weight +" earth kg is equal to " moon_weight + " moon kg.");
                                                                               ^
Main.java:6: error: ';' expected
        System.out.println (eatrh_weight +" earth kg is equal to " moon_weight + " moon kg.");
                                                                                            ^
3 errors
stdout
Standard output is empty