summaryrefslogtreecommitdiff
path: root/base/ex35.java
blob: 52585aff19bbfc9fd20fbeeca231e8e00fd80112 (plain)
1
2
3
4
5
6
7
8
9
10
11
class ex35{
    public static void main(String[] a){
        System.out.println(new Fac().ComputeFac(10));
    }
}

class Fac {
    public int ComputeFac(int num){
        return 4 ;
    }
}