比较两位数的大小,主要步骤:
Dim m as integer
Dim n as integer
if m>=n then
print m
else
print n
end if
心得体会:有 if 的时候别忘了写 end if 。
比较两位数的大小,主要步骤:
Dim m as integer
Dim n as integer
if m>=n then
print m
else
print n
end if
心得体会:有 if 的时候别忘了写 end if 。