Scanner console = new Scanner(System.in); int radius = console.nextInt(); if (radius > 0 ) { double pi = 3.14; double s = pi * radius * radius; int s1 = (int)Math.round(s); System.out.println(s1);} Почему не проходит такой вариант по решению?