Skip to content

Instantly share code, notes, and snippets.

@deven98
Created June 3, 2018 12:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deven98/39b76b4951b3822e73c75c0167886b2d to your computer and use it in GitHub Desktop.
Save deven98/39b76b4951b3822e73c75c0167886b2d to your computer and use it in GitHub Desktop.
class Box {
private int length, width, height;
public Box(int length, int height, int width) {
this.length = length;
this.height = height;
this.width = width;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment