I'm new to java and having trouble.
I need to take a class I wrote and write a test applet for it to see if it works.
The applet is supposed to have a length label, an input for it, an width label, an input for it, a button to "calculate" and an output field below.
All the class does is find the perimeter and area of a rectangle
I wrote the class / methods but I have absolutely no idea how to turn it into an applet... I've been trying to read tutorials and asking for help but I just can't grasp it so any help or hints would be great.
import java.util.Scanner;
public class rectangle
{
public static void main( String[] args )
{
rectangle rec = new rectangle();
}
double length = 1.0
double width = 1.0
double perimeter
double area
public class calcPerimeter()
{
perimeter = 2*length + 2*width;
}
public class calcArea()
{
area = length*width;
}
private double getLength()
{
return length;
}
private double getWidth()
{
return width;
}
private double setLength( length )
{
double recLength = length;
if (recLength > 0.0 && recLength < 20.0) {
length = recLength;
}
}
private double setWidth( width )
{
double recWidth = width;
if (recWidth > 0.0 && recWidth < 20.0) {
width = recWidth;
}
}
private void toString()
{
System.out.printf("%s%.2f" + " " "%s%.2f" + " " + "%s%.2f" + " " + "%s%.2f" + " " +,
length, width, perimeter, area);
}
} // end main