本文介绍了如何打印双精度/浮点格式的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

你好,

您好,我是C Sharp的初学者,因此希望您能对此有所帮助.
如何使用
打印double/float格式
Console.WriteLine("###.###",avg);

平均类型为float.
如何获取小数点后的数字?

thx
yuda

hello,

hi I''m a beginner in C sharp, so hope you can help with this.
how to print double/float format,using

Console.WriteLine(" ###.### ", avg);

avg is of type float.
how to get digits after the decimal point?

thx
yuda

推荐答案


Console.WriteLine(" ###.0# ", avg); 



它将始终显示一个小数位,如果存在则显示任何其他小数位.



Which will show one decimal place always, and any additional decimal places if they are present.


这篇关于如何打印双精度/浮点格式的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-26 04:29