내용은 Implement a class Student. For the purpose of this exercise, a student has a name and a total quiz score. Supply an appropriate constructor and methods getName(), addQuiz(int score), getTotalScore(), and getAverageScore(). To compute the latter, you also need to store the number of quizzes that the student took. Supply a StudentTester class that더 보기
Tag: java
내맘대로 강좌 공통편 1
어쩌다보니 공통편이 나오네,, 제어문에 관한거야. 제어문이란 프로그램이 순서대로 쭉 밑으로만 가는게 아니라, 다시 반복도 하고, 조건이 안맞으면 건너 뛰기도하는,,, 그런게 제어문이야. 이번 2주차 C++3번 숙제는 이거 꼭 쓸듯,,, 우선 if( 조건1 ) { TODO1(); } else if( 조건2 ) { TODO2(); } else { TODO3(); } 이거는 조건부분에 a>1 이라고 하면 a가 1보다 클때 그부분의더 보기
이분들 뭥미,,^^
내 블로그에 들어온 유입경로,,, 괄호안은 검색어,, 내 블로그가 검색엔진에도 뜬다는건 기쁜데,,, 이렇게 노골적으로 숙제를 검색하면 안되지 않을까요 여러분? ㅋㅋ 열심히 교재를 읽거나 인터넷의 언어 강좌를 읽어서 스스로 합시다 여러분,, 검색해도 안나와요,, 내 블로그만 나오지 ^^
내맘대로 강좌 JAVA편 2
빨리하고 물리 보고서 써야 되는데,,, Rectangle box = new Rectangle(5, 10, 20, 30); 이것이 뜻하는 것은, Rectangle box 먼저 Rectangle 클래스대로 box개체의 공간을 할당 받는거야. 근데 공간만 있지 거기에 내용이 없잖아? 그래서 new Rectangle(5, 10, 20, 30) 라고 새로운 (5,10)에 위치하고 (가로 X 세로) = (20 X 30)인 직사각형을 만드는거야. 그다음에 Rectangle클래스에 있는 get뭐시기 메소드를더 보기
내맘대로 강좌 JAVA편 1
물리 보고서 써야되는데,,, 우선 이것도 Chapter 1~2의 내용을 정리해 볼게,,, Chapter 1. Introduction 이거는 간단히 프로그래밍이란 이런것이다… 니까 PASS!! 그래서 Chapter 2. using object로 넘어갈께,, 여기서는 “In Java, every value has a type” 이 말로 Chapter를 시작하지. 뭐 모든 프로그래밍 언어가 그렇지만 Java에서는 모든 value에는 type라는 형식을 매겨, int, String, double등 int는 interger의 약자(?)로 정수형,더 보기
2주차 JAVA숙제,,,(파일 삭제)
You are supposed to make two simple programs in this week. 1. Based on the rectangle class example in our text book, add “intersection method” to the rectangle class. The intersection method returns the intersection of two rectangles, that is the rectangle formed by two overlapping rectangles. You call this method as follows: Rectangle r3더 보기