|
import java.util.Scanner;
public class Fibanocci
{
private static int getNumberOfPairs(int months)
{
int result;
if (months == 0)
{
result = 0;
}
else if (months == 1)
{
result = 1;
}
else
{
result = Fibanocci.getNumberOfPairs(months - 1) + Fibanocci.getN
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2009.07.21
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|