개발자가 되기까지 (2023.08.16~2024.04.15)/[Basic] Java2023. 9. 13. 21:28[Java] Class를 활용해 학생정보 출력
학생 값을 입력 후, 이름(나이) 전화번호 출력 조건 학생 class 멤버변수: 이름, 나이, 전화번호, 주소 import java.util.Scanner; public class StudentInfo { public static void main(String[] args) { // 클래스 객체 생성 (2명) // 학생 값을 입력 후, 이름(나이) 전화번호 출력 Student std1 = new Student("아이언맨",40,"010-1111-1111"); Student std2 = new Student("헐크",37,"010-2222-2222"); Student std3 = new Student(); // print메소드로 출력 std1.print(); // print메소드 안쓰고 toString으로..