Java Programming
Instructions Write, compile, and test a class that displays the first few lines of the lyrics of your favorite song.
public class FavoriteSong { public static void main(String[] args) { System.out.println("" + "I'm not afraid, I'm not afraid (yeah)\n" + "To take a stand, it's been a ride\n" + "Everybody, I guess I had to\n" + "Go to that place\n" + "To get to this one\n" + "Now some of you\n" + "Might still be in that place\n" + "If you're tryin' to get out\n" + "Just follow me\n" + "I'll get you there"); } }
Get Answers For Free
Most questions answered within 1 hours.