Top Posters
Since Sunday
a
5
k
5
c
5
B
5
l
5
C
4
s
4
a
4
t
4
i
4
r
4
r
4
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 returned from gcd(60, 24)?
A) 24
B) 12
C) 66
D) 60
Textbook 
Starting Out with Java: Early Objects

Starting Out with Java: Early Objects


Edition: 4th
Author:
Read 132 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
makes a lot more sense, thanks for the help
New Topic      
Explore
Post your homework questions and get free online help from our incredible volunteers
  1400 People Browsing
 102 Signed Up Today
Related Images
  
 4428
  
 102
  
 225
Your Opinion