package helloworld; public class HelloWorld { public static void main(String[] args) { double a; a = Math.PI; if (a > 3) { System.out.println("A je větší, než 3"); } else { System.out.println("A je menší, než"); } } }