如何编码,以便显示百分之一的百分比? Visual Basic
MsgBox("Percantage: " & (correctQuestions + wrongQuestions) / 2)
答案 0 :(得分:0)
一种简单的方法是MsgBox("Percentage: " & Round(100 * (correctQuestions + wrongQuestions) / 2) & "%")
我使用Round()删除任何小数部分;例如,最多2位小数,请使用
MsgBox("Percentage: " & Round(100 * (correctQuestions + wrongQuestions) / 2, 2) & "%")
但请注意,你的所有公式都在显示问题总数的一半;假设它们是正确的还是错误的。