1.학생객체 도출
2.학생객체 속성정의
3.클래스 작성
--------------------
public class StudentMain {
public static void main(String[] args){
//1.학생객체생성
//2.학생객체 데이타셋팅
//(학번, 이름, 국어, 영어, 수학, 총점, 평균, 평점)
//3.학생객체데이타 출력
Student stu;
stu = new Student();
stu.undergrad = 111111;
stu.name = "haha";
stu.kor = 60;
stu.eng = 50;
stu.math = 70;
stu.tot = stu.kor+stu.eng+stu.math;
stu.avg = (stu.kor+stu.eng+stu.math)/3;
//stu.grad = if(stu.avg>100 || stu.avg<0){
// System.out.println("점수가 잘못되었군요");
//}
System.out.println("학번 : "+stu.undergrad);
System.out.println("이름 : "+stu.name);
System.out.println("국어 : "+stu.kor);
System.out.println("영어 : "+stu.eng);
System.out.println("수학 : "+stu.math);
System.out.println("총점 : "+stu.tot);
System.out.println("평균 : "+stu.avg);
-------------------------------------------------------------
/* * 성적관리프로그램에서 * 학생1명의 데이타를 가지고 있는 객체(Value object) */ public class Student { /* * 속성 ( 학번, 이름, 국어, 영어, 수학, 총점, 평균, 평점 ) */ public int undergrad; public String name; public int kor; public int eng; public int math; public int tot; public float avg; public int grad; }
public class StudentMain {
public static void main(String[] args){
//1.학생객체생성
//2.학생객체 데이타셋팅
//(학번, 이름, 국어, 영어, 수학, 총점, 평균, 평점)
//3.학생객체데이타 출력
Student stu;
stu = new Student();
stu.undergrad = 111111;
stu.name = "haha";
stu.kor = 60;
stu.eng = 50;
stu.math = 70;
stu.tot = stu.kor+stu.eng+stu.math;
stu.avg = (stu.kor+stu.eng+stu.math)/3;
//stu.grad = if(stu.avg>100 || stu.avg<0){
// System.out.println("점수가 잘못되었군요");
//}
System.out.println("학번 : "+stu.undergrad);
System.out.println("이름 : "+stu.name);
System.out.println("국어 : "+stu.kor);
System.out.println("영어 : "+stu.eng);
System.out.println("수학 : "+stu.math);
System.out.println("총점 : "+stu.tot);
System.out.println("평균 : "+stu.avg);
-------------------------------------------------------------
/* * 성적관리프로그램에서 * 학생1명의 데이타를 가지고 있는 객체(Value object) */ public class Student { /* * 속성 ( 학번, 이름, 국어, 영어, 수학, 총점, 평균, 평점 ) */ public int undergrad; public String name; public int kor; public int eng; public int math; public int tot; public float avg; public int grad; }
점점 커가는구만..뭐가 뭔지 모르는 1인ㅈ~^^;ㅋ
답글삭제점점 ~~
답글삭제