xxxxxxxxxx
// Week 1 Homework - Madlib - Jason Cohen //
// sentences and words //
String sentence1 = "It was early in the";
String noun1 = "morning.";
String sentence2 = "I was eager to wake up";
int TimeBeforeClass = 2;
String sentence3 = "hours before my class so I can shower and eat breakfast.";
String sentence4 = "I remember that morning to be";
String adjective1 = "freezing.";
String sentence5 = "I was about to walk out the door but stupidly";
String verb1 = "forgot";
String noun2 = "my winter coat.";
String sentence6 = "I race to the door after I put my coat on fearing that I missed the";
String noun3 = "bus to campus.";
String sentence7 = "I open the door to see I missed the bus with";
int TimeBeforeClass2 = 30;
String sentence8 = "minutes left before class begins.";
String sentence9 = "I wait with patience for the next bus thats";
float BusTime = 3.5;
String sentence10 = "minutes away.";
String sentence11 = "After the bus ride I";
String verb2 = "sprint to";
String noun4 = "class.";
String sentence12 = "After the stressful morning, I was able to arrive on time with";
float TimeToSpare = 0.5;
String sentence13 = "minutes to spare.";
// Final Product //
println (sentence1 , noun1 , sentence2 , TimeBeforeClass , sentence3 , sentence4 , adjective1 , sentence5 , verb1 , noun2 , sentence6 , noun3 , sentence7 , TimeBeforeClass2 , sentence8 , sentence9 , BusTime , sentence10 , sentence11 , verb2 , noun4 , sentence12 , TimeToSpare , sentence13);