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.
我有一个数组列表,例如 [2.3, 0.0, 1.34, 0.0, 4.3],我想找到这个数组列表的最小值,但不考虑这个数组中的零。这意味着我正在寻找一个在上述列表中的 2.3、1.3 和 4.3 中返回 1.34 作为最小值的函数。有什么建议吗?
是的。编写一个遍历数组的 for 循环,设置一个 double 变量等于数组中的最小值。除非该值为零,否则忽略它。你有什么问题?