Assignment 18
public class Schedule
{
public static void main( String[] args )
{
String t1, t2, t3, t4, t5, t6, t7, c1, c2, c3, c4, c5, c6, c7;
t1 = "Mr. Schreiber";
t2 = "Ms. Yfantis";
t3 = "Mr. Karas";
t4 = "Mr. Sutherland";
t5 = "Ms. Alexander";
t6 = "Mr. Heard";
t7 = "Mr. Davis";
c1 = "Japanese 3";
c2 = "US History";
c3 = "Calculus AB AP";
c4 = "Chemistry";
c5 = "Learning Skills";
c6 = "English 3";
c7 = "Intro Comp Prog";
System.out.println( "[ 1|--------" + c1 + "--" + t1 );
System.out.println( "[ 2|--------" + c2 + "--" + t2 );
System.out.println( "[ 3|--------" + c3 + "--" + t3 );
System.out.println( "[ 4|--------" + c4 + "--" + t4 );
System.out.println( "[ 5|--------" + c5 + "--" + t5 );
System.out.println( "[ 6|--------" + c6 + "--" + t6 );
System.out.println( "[ 7|--------" + c7 + "--" + t7 );
}
}