티스토리 뷰
package afternoon;
public class Factorial {
static int num = 5;
public static void main(String[] args) {
// TODO Auto-generated method stub
System.out.println("factorial "+num+" = "+factorial(num));
}
private static long factorial(int i) {
// TODO Auto-generated method stub
if(i==1)
return 1;
else
return i * factorial(i-1);
}
}
'java,web study > 2주차 (7월 8일~14일)' 카테고리의 다른 글
피보나치 수열 (0) | 2013.07.11 |
---|---|
객체간 형변환 (다형성 관련) (0) | 2013.07.11 |
클래스 변수 (0) | 2013.07.10 |
인터페이스의 상속 (0) | 2013.07.10 |
객체 복사 (0) | 2013.07.09 |
댓글