문제풀이/자바

TIL - 자바의정석 연습문제[ch6 - 5]

Mo_bi!e 2022. 12. 27. 14:36

[6 - 5]

1. 문제설명

2. 나의 해답

package ex6_5;

public class Exercise6_5 {

	public static void main(String[] args) {
		// TODO Auto-generated method stub

		Student s = new Student("홍길동",1,1,100,60,76);
		
		System.out.println(s.info());
	}

}

package ex6_5;

public class Student {

	String name;
	int ban;
	int no;
	int kor;
	int eng;
	int math;
	
	
	public Student(String name, int ban , int no , int kor , int eng, int math) {
		// TODO Auto-generated constructor stub
		
		this.name = name;
		this.ban = ban;
		this.no = no;
		this.kor = kor;
		this.eng = eng;
		this.math = math;
	
	}
	
	public String info() {
		// TODO Auto-generated method stub
		String i = name+ ',' + ban+ ',' + no+ ',' +kor+ ','+eng+ ','+math;
		
		return i ;
	}
//c, e
}

3. 정답 코드

상동

4. 보충 및 회고 

(1) 보충

 

(2) 회고 : 문제풀이과정에서 어떻게 접근하려고했는지 (접근방법) + 어려움이 있었는데 해결했다.

 

큰 어려움이 없었다. 더 어려운것을 풀고싶다.