Top Posters
Since Sunday
g
3
3
2
J
2
p
2
m
2
h
2
s
2
r
2
d
2
l
2
a
2
New Topic  
Oughto Oughto
wrote...
Posts: 742
Rep: 1 0
7 years ago
Look at the following pseudocode algorithm.

Algorithm gcd(x, y)
  if (x < y)
    gcd (y, x)
  else
    if (y = 0)
      return x
    else
      return gcd(y, x mod y)
end gcd

What is the recursive case for the algorithm gcd?
A) x < y
B) y = 0
C) Both A and B
D) Neither A nor B
Textbook 
Starting Out with Java: Early Objects

Starting Out with Java: Early Objects


Edition: 4th
Author:
Read 125 times
2 Replies
Replies
Answer verified by a subject expert
blitheringblithering
wrote...
Posts: 354
Rep: 9 0
7 years ago
Sign in or Sign up in seconds to unlock everything for free
More solutions for this book are available here
1
University of Notre Dame

Related Topics

Oughto Author
wrote...
7 years ago
I mentioned in my previous post that I chose this as an elective, thanks for helping me understand
New Topic      
Explore
Post your homework questions and get free online help from our incredible volunteers
  1055 People Browsing
 129 Signed Up Today
Related Images
  
 4423
  
 354
  
 220
Your Opinion
Where do you get your textbooks?
Votes: 328