Exception in thread "main" java.lang.Error: Unresolved compilation problem:
at PointChecker.main(pointChecker.java:6)
Here's my code:
import java.util.Scanner;
public class PointChecker {
public static void main(String[] args) {
boolean notdone = true;
while (notdone) {
System.out.println("Please enter 3 points");
Scanner scan = new Scanner(System.in);
int x1 = scan.nextInt();
int y1 = scan.nextInt();
int x2 = scan.nextInt();
int y2 = scan.nextInt();
int x3 = scan.nextInt();
int y3 = scan.nextInt();
} // while
} // main
}
Please help thanks

New Topic/Question
Reply



MultiQuote



|