Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这实际上很尴尬,我不知道该怎么做,我尝试了 3 种不同版本的语法并搜索了大约 4 页的溢出,我希望标签包含百分号和表达式,我该怎么做这?这是我的逻辑。
AIbasehealth.Text = "%" And Integer / 5
您需要使用ToString表达式的方法。此外,除法运算符的方向也有所不同,/整数除法\\的位置也不同。
ToString
/
\
IE
AIbasehealth.Text = "%" + (theInteger / 5).ToString
或者
AIbasehealth.Text = "%" + (theInteger \ 5).ToString
使用&字符串连接运算符或String.Format()方法。
&
String.Format()
AIbasehealth.Text = "%" & (varInteger / 5)
AIbasehealth.Text = String.Format("% {0}",varInteger / 5))
int theInteger = 50; AIbasehealth.Text = "%" + (theInteger / 5);