Percentage calculation

后端 未结 5 1774
死守一世寂寞
死守一世寂寞 2020-12-13 08:32

I am working in progress bar concept in ASP.NET MVC 2. Here i have a DropDownList which has 10 values. i want to calculate the percentage for progress bar, e.g. 10 values fr

5条回答
  •  -上瘾入骨i
    2020-12-13 08:50

    Mathematically, to get percentage from two numbers:

    percentage = (yourNumber / totalNumber) * 100;
    

    And also, to calculate from a percentage :

    number = (percentage / 100) * totalNumber;
    

提交回复
热议问题