如何找到百分比
本文关键字:百分比 何找 | 更新日期: 2023-09-27 18:20:27
我想在我的应用程序中显示风险比率。
我想得到这个值的百分比,例如
设a=100,b=50;
我想显示百分比值=a-b的值;=50;
我想用百分比来表示。
任何建议。
提前感谢。
如果我能正确理解你的问题,
如果a=总数,b是部分
则b/a*100=采用的百分比
Double a = 100;
Double b = 50;
Double percentage = (b/a*100);
// to output the result
Labelcontrol.Text = percentage.ToString();
// or if just a plain c# app you can send it to the console
Console.WriteLine(percentage.ToString());
更新:我已经意识到,一旦你删除了数值,你可能会想要另一种方式来改变你想要的百分比。在这种情况下,计算行被简单地更新为:
Double percentage = 100*(a-b)/a;
let percentage=100*(a-b)/a
也许你会想四舍五入
下面是一个使用字符串格式格式化结果的例子(C#,正如您用它标记的问题)
int a = 100, b = 50;
double p = (double)(a - b) / a;
string s = string.Format("Result is {0:0.0%}", p);