本文介绍了我如何计算投票百分比B / W他们得到的两个成员....的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
如果A获得5票而B获得3票......我需要在A和B的每个标签上显示各个百分比....使用会话变量..
帮助我..
if A got 5 votes and B got 3 votes..and i need to display individual percentages on each label of A and B....using session variables..
help me..
推荐答案
int A = 5;
int B = 3;
labAPercent.Text = (A * 100.0 / (A + B)).ToString();
labBPercent.Text = (B * 100.0 / (A + B)).ToString();
这篇关于我如何计算投票百分比B / W他们得到的两个成员....的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!