VB中如何把IIF()函数变换为简单IF语句

来源:学生作业学帮网 编辑:学帮网 时间:2024/05/13 05:31:31

VB中如何把IIF()函数变换为简单IF语句

b=iif( a>b,1,0) => if a>b then b=1 else b=0
你看下还有什么问题.