Assignemnt #18 Your Schedule
Code
Name: Iaroslav Titov
Period: 7
Project Name: YourSchedule
File Name: YourSchedule.java
Date: 9/15/2015
public class YourSchedule
{
public static void main( String[] args )
{
// creating 14 variables is too much
String[] classes = {"Free period","AP Euro", "English 3", "AP Calculus BC","AP Chemistry", "PE Weight Trng","Intro Comp prog"};
String[] teachers = {"Mr. Nobody","Mrs. Fisher","Mrs. Munroe", "Mr. Davis", "Mr. Morgan", "Mr. Longero", "Mr. Davis"};
System.out.println();
for (int i = 0; i < 7; i++)
{
System.out.println(" "+i+". "+classes[i]+" by "+teachers[i]);
}
System.out.println();
}
}
Picture of the output