
1. class
public class Song {
private String title;
private String artist;
private int year;
private String country;
public Song(String title, String artist, int year, String country) {
this.title = title;
this.artist = artist;
this.year = year;
this.country = country;
}
public void show() {
System.out.println(year + "년 " + country + "국적의 " + artist + "가 부른 " + title);
}
}
package Class;
public class SongResult {
public static void main (String[] args) {
Song main = new Song("Dancing Queen", "ABBA", 1978, "스웨덴");
main.show();
}
}