Question
Java programming , please fill in the blanks Complete this program that tests whether a point (x, y) is inside a square with side length
Java programming , please fill in the blanks
Complete this program that tests whether a point (x, y) is inside a square with side length s whose center is the origin.
import java.util.Scanner;
4 public class Points
5 {
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.println("Enter s, x, and y: ");
double s = in.nextDouble ();
double x = in.nextDouble ( );
double y = in.nextDouble();
// You write the if/else statements
// Use these print statements
System.out.println("boundary");
System.out.println("inside");
System.out.println("outside");
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started