📜  从 Julia 中的列表中获取最大值 – max() 方法

📅  最后修改于: 2022-05-13 01:54:51.444000             🧑  作者: Mango

从 Julia 中的列表中获取最大值 – max() 方法

max()是 julia 中的一个内置函数,用于返回参数的最大值。

示例 1:

# Julia program to illustrate 
# the use of max() method
  
# Getting the maximum value of the parameters.
println(max(1, 2, 3, 4))
println(max(1, 3, 5))
println(max(2, 4, 6))

输出:

4
5
6

示例 2:

# Julia program to illustrate 
# the use of max() method
  
# Getting the maximum value of the parameters.
println(max(0.6, 0.7, 0.2))
println(max(2.5, 3.5, 0.3, 1.7))

输出:

0.7
3.5