public static void main(String[] args) {
TV myTV = new TV("LG", 2017, 32); //LG에서 만든 2017년 32인치
myTV.show();
}
LG에서 만든 2017년형 32인치 TV
코드 설명
class TV {
private String brand;
private int year;
private int inch;
TV(String brand, int year, int inch) {
this.brand = brand;
this.year = year;
this.inch = inch;
}
public void show() {
System.out.println(brand+"에서 만든 "+year+"년형 "+inch+"인치 TV");
}
}
public class TVTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
TV myTV = new TV("LG", 2017, 32);
myTV.show();
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
System.out.print("수학, 과학, 영어 순으로 3개의 정수 입력 >> ");
int math = sc.nextInt();
int science = sc.nextInt();
int english = sc.nextInt();
Grade me = new Grade(math, science, english);
System.out.println("평균은 "+me.average()); // average()는 평균을 계산하여 리턴
sc.close();
}
수학, 과학, 영어 순으로 3개의 정수 입력 >> 90 88 96
평균은 91
풀이
import java.util.Scanner;
class Grade {
private int math;
private int science;
private int english;
Grade(int math, int science, int english) {
this.math = math;
this.science = science;
this.english = english;
}
public int average() {
return (math + science + english) / 3;
}
}
public class GradeTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
System.out.print("수학, 과학, 영어 순으로 3개의 정수 입력 >> ");
int math = sc.nextInt();
int science = sc.nextInt();
int english = sc.nextInt();
Grade me = new Grade(math, science, english);
System.out.println("평균은 "+me.average());
sc.close();
}
}
노래 한 곡을 나타내는 Song 클래스를 작성하라. Song은 다음 필드로 구성된다.
또한 Song 클래스에 다음 생성자와 메소드를 작성하라.
class Song {
private String title;
private String artist;
private int year;
private String country;
Song() {
this("title","artist",0000,"country");
}
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);
}
}
public class java_study4_3 {
public static void main(String[] args) {
// TODO Auto-generated method stub
Song song = new Song("Dancing Queen","ABBA",1978,"스웨덴");
song.show();
}
}
다음 실행 결과와 같이 3개의 Circle 객체 배열을 만들고 x, y, radius 값을 읽어 3개의 Circle 객체를 만들고 show()를 이용하여 이들을 모두 출력한다.
x, y, radius >>3.0 3.0 5
x, y, radius >>2.5 2.7 6
x, y, radius >>5.0 2.0 4
(3.0,3.0)5
(2.5,2.7)6
(5.0,2.0)4
import java.util.Scanner;
class Circle {
private double x, y;
private int radius;
public Circle(double x, double y, int radius) {
this.x = x; //x, y, radius 초기화
this.y =y;
this.radius = radius;
}
public void show() {
System.out.println("(" + x + "," + y + ")"+ radius);
}
}
public class CircleManager {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc = new Scanner(System.in);
Circle c[] = new Circle[3]; // 3개의 Circle 배열 선언
for(int i=0; i < c.length; i ++) {
System.out.print("x, y, radius >>");
double x = sc.nextDouble(); // x값 읽기.
double y = sc.nextDouble(); // y값 읽기.
int radius = sc.nextInt(); // radius값 읽기.
c[i] = new Circle(x, y, radius); // Circle 객체 생성
}
for(int i=0; i<c.length; i++)
c[i].show();
sc.close();
}
}