淘气要演写一份800字的稿件,已经写了15分钟,每分钟写20个字,还剩多少字没写?
800-15×20,
=800-300,
=500(个).
答:还剩500字没写.
在窗体上画一个命令按钮,其名称为Commandl,然后编写如下程序: Function a(x As Integer, y As Integer) As Integer a = IIf(x > y, x, y) End Function Private Sub Command1_Click() Dim n As Integer, m As Integer n = 10 m = 20 Print a(n, m) End Sub程序运行后,单击命令按钮,输出结果是______。