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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!