//Sample08_004.java class Sample08_004{ static int value = 100; static void method_04(){ value *= 1.1; } public static void main(String[] args){ method_04(); System.out.println("Price including tax = " + value); } }