Assignemnt #18 Your Schedule

Code

    /// Name: DeeJay Cerezo
/// Period: 7
/// Program Name: Your Schedule
/// File Name: YourSchedule.java
/// Date Finished: 9/25/2015

public class YourSchedule
{
      public static void main(String[]args) {
      
          String teach1, teach2, teach3, teach4, teach5, teach6, teach7, course1, course2, course3, course4, course5, course6, course7;
          
          teach1 = "Mrs. Morse";
          teach2 = "Shizuka Sensei";
          teach3 = "Dewes-sama";
          teach4 = "Ball-san";
          teach5 = "Sensei Shreibs";
          teach6 = "Speir-dono";
          teach7 = "Mr. Davis";
          course1 = "Alchemy 101";
          course2 = "Advanced Arcane Arts Honors";
          course3 = "Ancient Orthography";
          course4 = "Trigonomic Arithmatics";
          course5 = "Japanese Orthology";
          course6 = "USH";
          course7 = "Intro to downloading more RAM";
              
          System.out.println("1 | " + teach1 + " | " + course1);
          System.out.println("2 | " + teach2 + " | " + course2);
          System.out.println("3 | " + teach3 + " | " + course3);
          System.out.println("4 | " + teach4 + " | " + course4);
          System.out.println("5 | " + teach5 + " | " + course5);
          System.out.println("6 | " + teach6 + " | " + course6);
          System.out.println("7 | " + teach7 + " | " + course7);
          

          
          
      }
  }
    
    

Picture of the output

Assignment 18