strictfp class StrictPI { public static void main(String[] args) { // Calculate PI^2 double PI2 = Math.PI * Math.PI; System.out.println(PI2); } }