50的英语:fifty
词语分析:
音标: 英 ['fɪfti] 美 ['fɪfti]。
释义:
num. (数词)
五十
adj. (形容词)
五十的
五十个的
许多的
n. (名词)
五十年代
五十
短语:
fifty pence 五十便士。
fifty cents 五十美分。
go fifty-fifty 平分, 分摊。
fifty fifty 平分
fifty-move rule 五十着规则。
例句:
He fathered a daughter at the age of fifty.。
他五十岁时生下一个女儿。
Black smog reduced visibility to about fifty yards.。
黑色的烟雾使能见度降到大约五十码左右。
The box weights fifty kilograms net.。
这箱子净重50公斤。
2days 2天
12hours 12小时
50min 50分钟
It takes 2 days and 3 hours 50 minutes 40 seconds.。
One fifty 一点五十分。
ten to two 十分到两点 (一点五十分)
或 军用 计时(平常交流不用)
1350 hours
"thirteen hundred fifty hours" 一点五十分。
command1是第一题,3是第二题,4是第三题,2在form click 和 sub change里。
Private Sub Command1_Click()。
s = 0
For i = 20 To 200。
If i Mod 6 = 0 Or i Mod 9 = 0 Then s = s + i。
Next
Print s
End Sub
Private Sub Command3_Click()。
n = InputBox("输入时间")。
If n < 10 Then Print 30: Exit Sub。
If n < 50 Then。
s = 30 + (n - 10) * 3。
Print s
Exit Sub
End If
s = 30 + 40 * 3 + (n - 50) * 2.5。
If s > 150 Then s = 150。
Print s
End Sub
Private Sub Command4_Click()。
a = Array(9, 7, 10, 4, 3, 8)。
Max = 1
For i = 0 To 4
For j = i + 1 To 5。
If a(Max) < a(j) Then Max = j。
Next
t = a(i): a(i) = a(Max): a(Max) = t。
For j = 0 To 5。
Print a(j);。
Next
Next
End Sub
Private Sub Form_Click()。
Call change(a, b)。
End Sub
Public Sub change(a, b)。
t = a
a = b
b = t
End Sub