👤

Se consideră subprogramul f, definit mai jos.
int f(int x)
{ if(x<=0)
return 0;
return x+f(x-5);
}
Care este rezultatul apelului f(20)?