1樓:匿名使用者
vb是什麼意思??
數學方式應該這樣!!
設數之和為m
所以2m=102*33
所以m=51*33
2樓:匿名使用者
dim a,i as integer
for i =0 to 100
if mod(i/3)=0 then
a=a+i
next i
其中a為能被3整除的數之和
3樓:匿名使用者
dim a,i as integer
for i =0 to 99 step 3a=a+i
next i
或簡單的直接輸出1683即可
4樓:
for i =3 to 99
a = a + i
next i + 3
5樓:羅瀟
private sub form_click()dim sum
sum = 0
for i = 1 to 100
if i mod 3 = 0 then
sum = sum + i
end if
next i
print sum
end sub
100以內能被3整除的數有幾個,100以內能被3整除的數
浪風使者 用高斯函式取整,多少個倍數都能取出來 高斯函式 x 如果整數取整,如果是小數取不大於小數的最近的那個整數。100內有多少3的倍數 100 3 33 100內有多少2的倍數 100 2 50 100以內多少個4的倍數 100 4 25 100以內多少5的倍數 100 5 20 100內被2跟...
用asp語言求100以內能被3和5整除的奇數
雨霧丶 是兩道題?第一題 for i 1 to 100 if i mod 2 1 and i mod 3 0 and i mod 5 0 then response.write cstr i next 第二題 for i 2 to 4 for j 1 to 10 i mod 2 response.w...
100以內能被5整除的數有幾個
小t學姐 100以內能被5整除的數有20個,分別為 5 10 15 20 25 30 35 40 45 50 55,60 65 70 75 80 85 90 95 100。能被5整除的數的特徵是個位上的數必須是0,5,個位上是0 5的數一定能被5整除。解 能被5整除的數的特徵是 一個數的個位是0或5...