-
-
Save 5AbhishekSaxena/39d512b67204b98e8c8f08b917447b85 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Rectangle { | |
private int height; | |
private int width; | |
public void setHeight(int height) { | |
this.height = height; | |
} | |
public void setWidth(int width) { | |
this.width = width; | |
} | |
public int area() { | |
return height * width; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment