lab003 Polynomial
·
Data Structure
float Polynomial::Evaluate(float f);bool Polynomial::operator== (Polynomial &p); Evaluate() 은 주어진 다항식이 x 값이 f 일 경우의 값을 계산하는 함수이다. operator== 는 두 다항식이 같은 다항식인지를 알아보는 함수이다. 같으면 true 를 return하고, 다르면 false를 return 한다.
lab002 combination
·
Data Structure
다음 명세를 만족하는 프로그램을 C++로 작성하시오. 다음은 binary coefficient (다른 말로 조합의 수)를 구하는 공식이다. 이를 구하는 프로그램을 recursive function을 이용하여 구현하시오.
Static & final
·
Computer Language
Interface
·
Computer Language
Inheritance
·
Computer Language
김 정출
Jeongchul Kim