VB语言中如何用inputbox输入多个single值?single可以转换为数组么
用split函数dim s as strings = inputbox()dim arr() as stringarr = split(s, ",")