Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

/*

* To change this template, choose Tools | Templates


* and open the template in the editor.
*/
package test1;
import java.util.Scanner;
/**
*
* @author smoakrs
*/
public class Square {
Scanner input = new Scanner(System.in);
int side;
Square(){

Square(int newSide){side = newSide;}


public int getArea() {return side*side;}
public int getPerimeter(){return side*4;}
public void setSide(int newSide) {
side=newSide;}
}

You might also like