반응형
[CODE]
import java.io.*;
public class Age {
private BufferedReader in;
private String name;
private int age;
public Age(){
in = new BufferedReader(new InputStreamReader(System.in));
name = "";
age = 0;
}
public void SetAge() throws IOException {
System.out.print("나이 = ");
age = Integer.parseInt( in.readLine() );
}
public void SetName() throws IOException {
System.out.print("이름 = ");
name = in.readLine();
}
public void Display(){
System.out.println(name + "님!");
System.out.println("당신의 나이는 " + age + "이시군요");
}
public static void main(String[] args) throws IOException{
Age ex = new Age();
ex.SetName();
ex.SetAge();
ex.Display();
}
}
[/CODE]
멤버필드와 멤버 메서드를 사용하는 간단한 프로그램 ~
실행결과
이름 = 광호
나이 = 26
광호님!
당신의 나이는 26이시군요