本文介绍了查找小数分母的分母值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
Plz Plz帮助我
将十进制数字值(如0.001)转换为int时遇到的问题.但是我的情况不同,我必须找到它的分母值,例如0.001/1000,现在我想在C#中从0.0001计算1000.
Plz Plz Help Me
Facing Problem in convert the decimal Number Value Like 0.001 into int. But my case is different i have to found it denominator value e.g 0.001/1000 now i want to calculate 1000 from 0.0001 in C#
推荐答案
decimal x = .001M;
int val =Convert.ToInt16( 1 / x);
这篇关于查找小数分母的分母值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!