47+23=7 45×2=9 69-25=44 72×08=576
6×34=204 062-032=03 14×05=07 075×100=75
002×05=001 36÷03=12 63÷7=09 56÷100=0056
075÷025=3 0125×8=1 48÷03= 16 096÷2=048
056÷28=002 036÷04= 09 064÷08=08 072÷36=02
36÷24=015 08×11=088 72+128= 20 467-38=429
128÷4=32 52÷13=04 125÷525= 02 164÷41=004
10÷20=05 24÷15=16 865×10=865 035×06=02128×04= 112
14-74=66,
192÷004=48,
032×500=160,
065+435= 5
10-54=46,
4÷20=02,
35×200=700,
15-006=144
075÷15=005,
04×08=032,
4×025=1,
036+154=2
101×99=9999,
420÷35=12,
25×12=300,
135÷05=270
3/4 + 1/4 =1,
2 + 4/9 =22/9,
3 - 2/3 =7/3,
3/4 - 1/2= 1/4
1/6 + 1/2 -1/6 =1/2,
75-(25+38)=12,
7/8 + 3/8 =5/4
3/10 +1/5 =1/2,
4/5 - 7/10 =1/10,
2 - 1/6 -1/3 =15
051÷17=003,
328+19=518,
52÷13=4,
16×04= 064
49×07=343,
1÷5=02,
6÷12=05,
087-049=038
2/12=1
3/13=1
3/23=2
3/16=2
4/38=6
5/320=12
7/314=6
8/740=35
4/316=12
9/527=15
2/130=15
12/724=14
30/130=1
51/9102=18
19/976=36
4/98=18
5/890=144
99/9899=98
3/146=28
7/128=4
10/190=9
5/3105=63
19/738=14
5/125=5
8/1916=38
61/60122=120
7/228=8 6/148=8
9/718=14
25/7100=28
9/581=45 8/916=18
复制粘贴到记事本,另存为xxvbs,编码选ANSI
rem 两位数加法口算/心算练习小程序number1="10~99"
number2="10~99"
operators=Array("+")
count=10
a=split(number1,"~"):b=split(number2,"~")
For i=1 to count
Randomize
o=Int(rnd (Ubound(operators) + 1))
If operators(o) = "x" Then
operators(o)=""
End If
If operators(o) = "÷" Then
operators(o)="/"
End If
Do While True
n1=Int(rnd (a(1)-a(0)+1)+a(0))
n2=Int(rnd (b(1)-b(0)+1)+b(0))
formula=CStr(n1) & operators(o) & CStr(n2)
If operators(o) = "/" Then
t=n1 Mod n2
If t=0 Then
Exit Do
End If
Else
Exit Do
End If
Loop
Do While True
n=inputbox(CStr(i) & "、" & formula & "=", "Mental Arithmetic")
If n = "" Then
Exit Do
Else
If n = CStr(Eval(formula)) Then
msgbox "correct" & vbCrLf & formula & "=" & n,,"Bingo"
Exit Do
Else
msgbox "incorrect",,"Sorry"
End If
End If
Loop
Next
1) 14÷05= 2) 155÷05=
3) 315÷07= 4) 186÷02=
5) 104÷08= 6) 038÷01=
7) 136÷02= 8) 116÷04=
9) 012÷06= 10) 027÷09=
11) 048÷02= 12) 873÷09=
13) 072÷03= 14) 046÷01=
15) 022÷02= 16) 345÷05=
17) 462÷06= 18) 192÷04=
19) 09÷03= 20) 511÷07=
21) 035÷01= 22) 392÷08=
23) 432÷09= 24) 024÷08=
25) 315÷07= 26) 098÷07=
27) 18÷06= 28) 176÷04=
29) 264÷04= 30) 756÷09=
31) 119÷07= 32) 153÷09=
33) 133÷07= 34) 118÷02=
35) 009÷01= 36) 021÷01=
37) 154÷02= 38) 828÷09=
39) 3÷05= 40) 171÷03=
41) 744÷08= 42) 248÷08=
43) 075÷05= 44) 192÷08=
45) 12÷08= 46) 007÷07=
47) 01÷05= 48) 388÷04=
49) 369÷09= 50) 228÷03=
以上就是关于小学数学口算题全部的内容,包括:小学数学口算题、求大佬帮我写一个练习口算的vbs代码、四年级小数除法口算题18道等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)