Guest User

Untitled

a guest
Jul 22nd, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. // berechnet n hoch m
  2. double hig(double n,double m){
  3. return (m==0) ? (1) : (n*hig(n,(m-1)));
  4. }
  5.  
  6. double f(double x){
  7. double a=(hig(x,5))+10.5;
  8. return a;
  9. }
Add Comment
Please, Sign In to add comment