单选题
下列程序的执行结果是( )。
public class ex68
{
public static void main(String[] args)
{
ex68 obj=new
ex680;
int s=0;
for(int i=1; i<=4; i++){
s+=obj.method(i);
}
System.out.println(s);
}
public int method(int n) {
if(n==1)
return 1;
else
tatum n * method(n-1);
}
}