Java Software Solutions > PP1.6 > Solution

Problem:

Write an application that prints the first few verses of a song
(your choice). Label the chorus.

Output:

Not available.

Solution:

public class Lyrics
{
   //-----------------------------------------------------------------
   //  Prints the lyrics of a song.
   //-----------------------------------------------------------------
 public static void main (String args[])
 {
  System.out.println("Jailhouse Rock");
  System.out.println();
  System.out.println("The warden threw a party in the county jail.");
  System.out.println("The prison band was there and they began to wail.");
  System.out.println("The band was jumpin' and the joint began to swing.");
  System.out.println("You should've heard those knocked out jailbirds sing.");
  System.out.println();
  System.out.println("Chorus:");
  System.out.println("Let's rock, everybody, let's rock.");
  System.out.println("Everybody in the whole cell block");
  System.out.println("was dancin' to the Jailhouse Rock.");
  System.out.println();
  System.out.println("Spider Murphy played the tenor saxophone,");
  System.out.println("Little Joe was blowin' on the slide trombone.");
  System.out.println("The drummer boy from Illinois went crash, boom, bang,");
  System.out.println("the whole rhythm section was the Purple Gang.");
  System.out.println();
  System.out.println("Repeat chorus");
 }
}


No comments :

Post a Comment

Follow Me

If you like our content, feel free to follow me to stay updated.

Subscribe

Enter your email address:

We hate spam as much as you do.

Upload Material

Got an exam, project, tutorial video, exercise, solutions, unsolved problem, question, solution manual? We are open to any coding material. Why not upload?

Upload

Copyright © 2012 - 2014 Java Problems  --  About  --  Attribution  --  Privacy Policy  --  Terms of Use  --  Contact