VB 将float型转换为int型
时间: 2023-10-25 12:33:17 浏览: 159
c++ float转int
5星 · 资源好评率100%
在VB中将float型转换为int型可以使用以下代码:
```
Dim myFloat As Single
Dim myInt As Integer
myFloat = 3.14159
myInt = CInt(myFloat)
```
在上面的代码中,`myFloat`是要转换的float型变量,`myInt`是转换后的int型变量。`CInt`是一个内置函数,它将float型变量转换为int型变量。
阅读全文