package class1_2_Caesar; /** * Created by yoder on 12/1/2016. */ public class TypeFun { public static void main(String[] args) { byte b = 5; int i; i = b; b =(byte)i; i = 2/4; // watch out for this in all the labs! System.out.println("i = " + i); // incrementers and decrementers System.out.println("i = " + i); System.out.println("i++ = " + i++); // What's going on here? post-increment System.out.println("++i = " + ++i); // and then pre-increment } }