Visual Basic 6.0 菜鸟手册

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/qq_35543858/article/details/89086632

基本结构

数据输入

n=val(text1.text)
x=val(inputbox(“输入x”))

数据输出

msgbox(提示)

多分支

if 表达式 then
语句块
elseif 表达式 then
语句块
else

endif

猜你喜欢

转载自blog.csdn.net/qq_35543858/article/details/89086632