Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Date le seguenti funzioni, cosa calcola x(100)?
- function x(n) {
- if(n <= 0) return 0
- return 1+y(n-3)
- }
- function y(n) {
- if(n <= 0) return 0
- return 2+x(n-2)
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement