Skip to content

Instantly share code, notes, and snippets.

@HassanUsman
Created October 30, 2017 03:52
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 HassanUsman/e2d9fa7377ba3a99766fa0424e8c513c to your computer and use it in GitHub Desktop.
Save HassanUsman/e2d9fa7377ba3a99766fa0424e8c513c to your computer and use it in GitHub Desktop.
public class Square {
private int a;
Square(){
a = 1;
}
public void setA(int a){
this.a = Math.abs(a);
}
public int getA(){
return this.a;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment