Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

create a class void draw ( ) / / draw this square on standard drawing.Provide a pop - up window that displays the two squares.

create a class void draw()//draw this square on standard drawing.Provide a pop-up window that displays the two squares. import java.util.Scanner;
public class Square {
private double x;
private double y;
private double length;
// Getters and Setters for the private members
public double getX(){
return x;
}
public void setX(double x){
this.x = x;
}
public double getY(){
return y;
}
public void setY(double y){
this.y = y;
}
public double getLength(){
return length;
}
public void setLength(double length){
this.length = length;
}
//Constructor
public Square(double x, double y, double length){
this.x = x;
this.y = y;
this.length = length;
}
//To calculate are of square
public double area(){
return this.length * this.length;
}
//To calculate perimeter of Square
public double perimeter(){
return 4* length;
}
// To check if two squares intersect
public boolean intersect( Square s)
{
double p1X = this.x;
double p1Y = this.y;
double p2X = this.x + this.length;
double p2Y = this.y - this.length;
// If one rectangle is on left side of other
if (p1X >(s.getX()+ s.getLength())|| s.getX()> p2X)
return false;
// If one rectangle is above other
if (p1Y <(s.getY()- s.getLength())|| s.getY()< p2Y)
return false;
return true;
}
//To check if second square is inside another
public boolean contains(Square s){
double p1X = this.x;
double p1Y = this.y;
double p2X = this.x + this.length;
double p2Y = this.y - this.length;
double s1X = s.getX();
double s1Y = s.getY();
double s2X = s.getX()+ s.getLength();
double s2Y = s.getY()- s.getLength();
if(s1X < p1X && s1Y > p1Y && s2X > p2X && s2Y < p2Y)
return true;
return false;
}
public static void main(String args[]){
Square s = new Square (0.2,0.7,0.3);
System.out.println("The area is : "+ s.area());
System.out.println("The perimeter is : "+ s.perimeter());
System.out.println("Enter the upper-left coordinates and the length of a square:");
Scanner scanner = new Scanner(System.in);
String[] inputs = scanner.nextLine().split("");
double a = Double.parseDouble(inputs[0]);
double b = Double.parseDouble(inputs[1]);
double c = Double.parseDouble(inputs[2]);
Square sq = new Square (a,b,c);
if(s.intersect(sq)== true)
System.out.println("It intersects the first square");
else
System.out.println("It doesnot intersects the first square");
if(s.contains(sq)== true)
System.out.println("It contains the first square");
else
System.out.println("It doesnot contain the first square");
scanner.close();
}
}

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke, David Auer, Scott Vandenberg, Robert Yoder

8th Edition

013460153X, 978-0134601533

More Books

Students also viewed these Databases questions