vb.net – VB2010如何判断数字是否为整数

前端之家收集整理的这篇文章主要介绍了vb.net – VB2010如何判断数字是否为整数前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我需要能够判断整数是一个整数还是有小数.因此13将是整数,23.23将是小数.

所以喜欢;

If 13 is a whole number then
msgBox("It's a whole number,with no decimals!")
else
msgBox("It has a decimal.")
end if
If x = Int(x) Then 
  'x is an Integer!'
Else
  'x is not an Integer!'
End If
原文链接:https://www.f2er.com/vb/255437.html

猜你在找的VB相关文章