Assignemnt #18 and Your Schedule
Code
/// Name: Mark Katz
/// Period: 6
/// Program Name: Your Schedule
/// File Name: YourSchedule.java
/// Date Finished: 9/14/2015
public class YourSchedule
{
public static void main( String[] args )
{
String course1, course2, course3, course4, course5, course6, teacher1, teacher2, teacher3, teacher4, teacher5, teacher6;
course1="Pre Calculus";
course2="AP Biology";
course3="English III";
course4="AP US History";
course5="Spanish III";
course6="Intro to Computer Programming";
teacher1="Mr. Thompson";
teacher2="Mrs. Polivka";
teacher3="Ms. Munroe";
teacher4="Mrs. Harvey";
teacher5="Mr. Caruzo";
teacher6="Mr. Davis";
System.out.println( "+--------------------------------------------------------------------------+" );
System.out.println( "| 1 | " + course1 + " | " + teacher1 + " |" );
System.out.println( "| 2 | " + course2 + " | " + teacher2 + " |" );
System.out.println( "| 3 | " + course3 + " | " + teacher3 + " |" );
System.out.println( "| 4 | " + course4 + " | " + teacher4 + " |" );
System.out.println( "| 5 | " + course5 + " | " + teacher5 + " |" );
System.out.println( "| 6 | " + course6 + " | " + teacher6 + " |" );
System.out.println( "+--------------------------------------------------------------------------+" );
}
}
Picture of the output