/** * Author: Josiah Yoder et al. * User: yoder * Class: SE1011-051 * Lesson: Week 8, Day 1 */ public class Example051_8_1 { /* * This is a scratch-paper method */ public static void main(String[] ignored) { Compex051_8_1 c1 = new Compex051_8_1(3,4); Compex051_8_1 c2 = new Compex051_8_1(1,2); // Compex051_8_1 c3 = new Compex051_8_1(5); // // Compex051_8_1 c4 = new Compex051_8_1(c1); // Compex051_8_1 c5 = add(c1, c2); // Not the "object oriented" way Compex051_8_1 c5 = c1.add(c2); } }