要用什么数据类型才能保存这样的数据我用c#, 例如以下这样写的 decimal aa=10/100000但除出来始终得出是0,其实际结果应该为0.0001才对呀!要怎么才能保存住0.0001这个数呢[解决办法]decimal aa= ((decimal)10) / 100000;