online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code   
Language
public class Main { String _name; int _roll; int _marks; String _grade; public Main (String name, int roll, int marks) { this._name = name; this._roll = roll; this._marks = marks; } public Main (String name, int roll, int marks, String grade) { this._name = name; this._roll = roll; this._marks = marks; this._grade = grade; } public void Show () { System.out.println (this._name + " " + this._roll + " " + this._marks +" " + this._grade); } public static void main (String[]args) { Main obj = new Main ("Chandan", 1, 98); Main obj1 = new Main ("Ritu", 2, 75, "A"); obj.Show(); obj1.Show(); } }

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