/* * To change this template, choose Tools | Templates * and open the template in the editor. */ package summer2014; import java.util.Scanner; /** * * @author jcmt */ public class Summer2014 { /** * @param args the command line arguments */ public static void main(String[] args) { Scanner input = new Scanner(System.in); int a,b,c; Integer d,e,f; Concert symphony = new Concert(); Concert band = new Concert(5,7,2014, "Beethoven", 5000); Performer georgeStrait = new Performer(5000.00f, "George Strait"); Band the = new Band(); the.getArrgh(); /* System.out.printf(" Concert date is %d and %d\n", band.getDay(), symphony.getDay()); System.out.printf(" Performers are %s and %s and %s\n", band.getPerformer().getPerformerName(), symphony.getPerformer().getPerformerName(), georgeStrait.getPerformerName()); * */ /* System.out.print("Please enter three integers seperated by one space: "); a = input.nextInt(); b = input.nextInt(); c = input.nextInt(); System.out.printf("Read in %d %d %d", a,b,c); input.nextLine(); System.out.println("Please enter two names as strings seperated by one space: "); georgeStrait.setPerformerName(input.nextLine()); System.out.printf(" \nPerformer is %s\n with data %s", georgeStrait.getPerformerName(), georgeStrait); georgeStrait.boxPerformerInfo(); */ /* while (b < a) { // lines of code d = c - a; e = b * 2; if (b == 100) //if (func(b)) { break; } f = d / a; b++; } */ /* while ((b < a) && (b <101)) { d = c - a; e = b * 2; if (b != 100) { f = d / a; } b++; } b--; */ } }