tcpuuu 发表于 2012-2-5 12:28:17

[已解决]比較 GUICtrlRead($a1) 是最大值 或 最小值 該如何?

本帖最后由 tcpuuu 于 2012-2-8 22:41 编辑

GUICtrlRead($a1)
GUICtrlRead($a2)
GUICtrlRead($a3)
GUICtrlRead($a4)

以上4個數值
如果 $a1 大於 0AND$a1 是最大值then..............
50503030有相等的數字也要當成 $a1是最大值

如果 $a1 大於 0AND$a1 是最小值then..............
2050 6020有相等的數字也要當成 $a1是最小值

sdc7 发表于 2012-2-5 13:17:44

z这个看看帮助吧 哎

半芯竹 发表于 2012-2-5 14:00:44

回复 1# tcpuuu

你可以尝试更改数组中$a的数值Local $a=
If $a>0 And $a >= $a And $a>= $a And $a >=$a Then MsgBox(0,0,'$a大于')
If $a>0 And $a <= $a And $a <= $a And $a <= $a Then MsgBox(0,0,'$a小于')

netegg 发表于 2012-2-5 14:54:36

本帖最后由 netegg 于 2012-2-5 19:17 编辑

#include <array.au3>
local $aA=
msgbox(0,0,_ArrayMax($aA) & @crlf & _ArrayMaxIndex($aA))
第二个数为0的时候,首个元素为最大值
最小值操作类似

yufei8051 发表于 2015-1-16 22:48:40

这样也可以。谢谢回答问题的朋友
页: [1]
查看完整版本: [已解决]比較 GUICtrlRead($a1) 是最大值 或 最小值 該如何?