Write a Ruby program to find the difference between the largest and smallest values of a given array of integers and length 1 or more
- برمجة
- برمجة روبي
- 2021-08-31
- mhanasmh00489829403
الأجوبة
def check_array(nums)
max = nums[0];
min = nums[0];
nums.each do |item|
if(item > max)
max = item;
elsif(item < min)
min = item
end
end
return (max-min)
end
print check_array([3, 4, 5, 6]),"\n"
print check_array([3, 4, 5]),"\n"
print check_array([3, 4])
Output:
3 2 1
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال