на первом System.out. Пишет, что в 16: error: cannot find symbol
System.out.printLn("1");
^
symbol: method printLn(java.lang.String)
location: variable out of type java.io.PrintStream
package com.javarush.task.pro.task03.task0308;
import java.util.Scanner;
/*
Координатные четверти
*/
public class Solution {
public static void main(String[] args) {
Scanner console = new Scanner(System.in);
int x = console.nextInt();
int y = console.nextInt();
if (x>0){
if (y>0)
System.out.printLn("1");
else
System.out.printLn("4");
} else {
if (y>0)
System.out.printLn("2");
else
System.out.printLn("3");
}
}
}