1樓:呆兔子
private sub command1_click()dim s as string, ss as stringfor i = 10 to 99
s = trim(str(i))
for j = 0 to 9
ss = trim(str(j))
if cint(left(s, 1) & ss & right(s, 1)) = i * 9 then print i, j
next j
next i
end sub
15-135
25-225
35-315
45-405
2樓:
因為這樣的數個位只可能是 5
private sub command1_click()dim i as integer
dim j as integer
for i = 15 to 95 step 5for j = 0 to 9
if (i \ 10) * 100 + j * 10 + (i mod 10) = i * 9 then
print i, j
end if
next j
next i
end sub
在兩位數的兩個數字中間加0,那麼所得的三位數比原數大8倍,求這個兩位數。(方程)
新野旁觀者 設原來兩位數是10x y 100x y 8 1 10x y 10x 8y 5x 4y x 4 y 5 這個兩位數是45 設這個兩位數是ab a是十位,b是個位 100a b 9 10a b 5a 4b 所以a 4,b 5 所以這個兩位數是45 設這個兩位數的十位是a,個位是b 100a ...
在兩位數的兩數字中間加0,那麼所得的三位數比原數大8倍,這個兩位數是多少
設這兩位數的十位數和個位數分別為m,n 0,9 顯然m 0,否則就不是兩位數了 由已知 100m 10 0 n 10m n 8 10m n 化簡得 5m 4n 1 則n必是5的倍數 因m,n都是0和9之間的整數,m 0 所以n 5 代入 1 得m 4 故所求兩位數是45 現場諮詢 算式解法 由原題可...
用1,2,3,4,5組成三位數和兩位數,這兩個數最大的乘積是多少
這兩個數最大的乘積是 431x52 22412 設三位數各位為a,b,c 兩位數各位為x,y則乘積 100a 10b c 10x y 10 100a 10b c x 100a 10b c y 10 100ax 10bx cx 100ay 10by cy 可得ax佔比最大,它們先取最大值,又a在加號前...