/** * */ /** * @author ted10014 * */ public class Example2 { /** * */ public Example2() { // TODO Auto-generated constructor stub } /** * @param args */ public static void main(String[] args) { // TODO Auto-generated method stub int myVar1, myVar2; myVar1=1024; System.out.println("myVar1 contains " + myVar1); myVar2 = myVar1 / 2 ; System.out.print("myVar2 contains myVar1 / 2 : "); System.out.println(myVar2); } }