Guest User

Untitled

a guest
Feb 18th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. def f(x: Int): Int = {
  2. if (x % 2 == 0) {1}
  3. else {f(x + 1)}
  4.  
  5. def f(x: Int): Int = {
  6. if (x % 2 == 0) {1}
  7. else {1 + f(x + 1)}
Add Comment
Please, Sign In to add comment