Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个脚本,该脚本需要确定哪个变量中的数字最高。我有 6 个变量,每个变量在运行时都传递一个值,我需要确定哪个变量中的数字最高。
由于潜在组合的数量(6!= 6*5*4*3*2*1 = 720),直接比较是不可能的。我该怎么办?
Math.max(5,10,15,20);将返回 20
Math.max(5,10,15,20);
在循环遍历每个变量时保留一个临时变量“max”,该变量将包含循环中该点的当前已知最大值。与每个索引的该变量进行比较。
使用Math.max功能。它将返回最大元素。
Math.max