其实我也不懂,瞎猜的.
四个赋值的参数若是各不相等,有没有比较简洁的方法表示的?比如a b c d除了这样表示if a<>b and b<>c ...
(a-b)^2+(b-c)^2+(c-d)^2=0
哈哈 写个函数 dim sum[3] as integersum[0]=a sum[1]=b sum[2]=c sum[3]=dfor i= 0 to 2 for k=i+1 to 3 compare(sum[i],sum[k]) nextnextprivate sub compare(x as integer,y as integer) if x<>y then msbbox("不相等") else msbbox(“相等”) end ifend sub
這樣寫更復雜。。。。