online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
public class Main { public static void main(String[] args) { Human human1 = new Human("Matthew", 21, 140); Human human2 = new Human("Lucas", 19, 130); System.out.println(human1.name); System.out.println(human1.age); System.out.println(human1.weight); System.out.println(); System.out.println(human2.name); System.out.println(human2.age); System.out.println(human2.weight); } }
public class Human { Human(String name, int age, double weight) { this.name = name; this.age = age; this.weight = weight; } }

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue