summaryrefslogtreecommitdiff
path: root/output/ex36.java
blob: 333bd7dafe5440ec8a7fe5e103f271b933ddaedf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class ex36{
    public static void main(String[] a){
        Fac b ;
        b = new Fac() ;
        System.out.println(b.ComputeFac(10));
    }
}

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