简单VB题:描述“X是小于100的非负整数”的VB表达式

来源:百度知道 编辑:UC知道 时间:2024/05/23 00:17:16
表达式!!!

dim x
x=50
if x < 100 then
print "x less than 100"
end if

dim x as integer '定义x为整数
x<100 and x>=0 '定义x为小于100的非负数

x<100 and x>=0
表达式是什么? 不知道