/* TestFinal.java CIS 160 David Klick 2015-09-09 Demonstrates use of constants */ public class TestFinal { public static void main(String[] args) { final double PI= 3.14159; System.out.println(PI); // PI = 6.8; // not legal, can't change value of constant } }