//******************************************************************** // lab13.java Author: Brenneman // // Driver for lab 13. Uses the BingoNumber class. // Students will add to this lab. //******************************************************************** import cs1.Keyboard; public class lab13 { //----------------------------------------------------------------- // instantiates 2 BingoNumbers and tests them for equality. //----------------------------------------------------------------- public static void main (String[] args) { //------ declare two integers and initialize them to 3 //------ tests them to see if they are == to each other, //------ and outputs an appropriate message int num1 = 3; int num2 = 3; if (num1 == num2) System.out.println("num1 and num2 are " + num1 + "\nnum1 is == to num2"); else System.out.println("num1 is " + num1 + " and num2 is" + num2 + "\nnum1 is NOT == to num2"); //------ COMPLETE THIS PART: //------ declare two BingoNumbers and initialize them to B7 //------ tests them to see if they are == to each other, //------ and outputs an appropriate message //------ COMPLETE THIS PART: //------ tests them to see if they are .equals to each other, //------ and outputs an appropriate message //------ COMPLETE THIS PART: //------ now assign the value of the first bingo number to the second. //------ tests them to see if they are == to each other, //------ and outputs an appropriate message //------ COMPLETE THIS PART: //------ tests them to see if they are .equals to each other, //------ and outputs an appropriate message } }