create a project and in it a class with a main.
We will be using the Scanner class to read from the user. At the
top of your main class, after the package statement, paste
import java.util.Scanner;
Part A
☑ In your main method, paste this code.
Scanner scan = new Scanner(System.in);
System.out.println("What is x?");
int x = scan.nextInt();
System.out.println("What is y?");
int y = scan.nextInt();
System.out.println("What is z?");
int z = scan.nextInt();
System.out.println("What is w?");
int w = scan.nextInt();...