下面是我
For x = 0 To 1 Step 0.0001
y = (q * x - xF) / (q - 1)
0 <= y < =1 and y >= x
Picture1.PSet (x * 100, y * 100)
Next x
我想規定 y在0-1,而且y不小于x , q 和xf是輸入的資料
uj5u.com熱心網友回復:
For x = 0 To 1 Step 0.0001
y = (q * x - xF) / (q - 1)
if (0 <= y) and (y< =1) and (y >= x) then
Picture1.PSet (x * 100, y * 100)
end if
Next
轉載請註明出處,本文鏈接:https://www.uj5u.com/gongcheng/82854.html
標籤:VB基礎類
