格式到小数点后两位

格式到小数点后两位

本文介绍了格式到小数点后两位的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

I have a number

long n = 32432432423;

I want to divide this by 1450 and print on a console with 2 decimal places (rounded)

How can I do it?

COnsole.WriteLine(????);
解决方案
Console.WriteLine("{0:N2}", ((double)n) / 1450);

这篇关于格式到小数点后两位的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-27 10:19