Write a Java program that displays at least four (4) lines of your favorite song. Name the class as FavoriteSong.java and add meaningful comments to the class.
package com.company;
public class FavoriteSong {
public static void main(String[] args) {
//Displaying the song title
System.out.println("Song title: Stay by The kid Laroi & justin bieber\n");
// displaying the song first four lines
//first line
System.out.println("I do the same thing I told you that I will never would");
//second line
System.out.println("I told you I'd change, even when I knew I never could");
//Third line
System.out.println("I know that I can't find nobody else as good as you");
//Fourth line
System.out.println("I need you to stay, need you to stay, hey");
}
}
Comments
Leave a comment