I have no time to figure this out and I really don't know how to do it, it's the last grade of the semester and my GPA rests on it's shoulders more than you'd think. I don't want to do anything more in computer science, I just took the class so it's not like it's necessary for me to know how to do this. I really need the answer to this so someone please give it to me! it's in Java
Assignment 7 on Chapter 8
Step 1: Write the class declaration for class Square that has a private instance variable side of type double and a no-argument constructor that sets the side to 1.0 by calling a method named setSide that you will declare in step 2.
Step 2: Write a method setSide for the class you defined in step1. Set the side variable to the argument of the method. Also make sure that the side is not less than 0.0. If it is, keep the default setting of 1.0.
Step 3: Write a method getSide for the class you modified in step2 that retrieves the value of instance variable side.
Step 4: Define another constructor for the class that takes one argument, the side, and uses the Square’s set method to set the side.
Step 5: Write a method computeArea for the class that computes the area of a Square.
Step 6: Define a toString method for the class that will return a String containing the value of side and the area of the Square.
You may use the SquareTest below to test your assignment:
import java.util.Scanner;
public class SquareTest
{
// set up GUI components and instantiate new MyRectangle
public static void main( String args[] )
{
Scanner input = new Scanner( System.in );
// create a new Square with no initial values
Square square = new Square();
System.out.print( "Please enter a double value for the side of the square: " );
double double1 = input.nextDouble();
square.setSide( double1 );
System.out.println( square ); // see the results of the test
} // end main
} // end class SquareTest