blob: 32c855b88f5282ef965151c0131885fc9bb1eb17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class ex35{
public static void main(String[] a){
System.out.println(new Fac().ComputeFac(10));
}
}
class Fac {
public int ComputeFac(int num){
int num_aux ;
num_aux = 4 ;
return num_aux ;
}
}
|