# Ruby code for max() method# declaring array
a =%w[for geeks]# max method example
puts "max() method form : #{a.max()}\n\n"
puts "max() method form : #{a.max(2)}\n\n"
Ruby
输出:
max() method form : geeks
max() method form :["geeks","for"]
Ruby
例子 #2 :
# Ruby code for max() method# declaring array
a =%w[hi I can code for geeks]# max method example
puts "max() method form : #{a.max(4)}\n\n"
puts "max() method form : #{a.max(1)}\n\n"
Ruby
输出:
max() method form :["hi","geeks","for","code"]
max() method form :["hi"]