小编典典

如何在字符串的某个位置插入一个字符?

all

我得到int一个 6 位数的值。我想将其显示为 a String,并在int. 我想使用
afloat但被建议String用于更好的显示输出(而不是1234.5will be
1234.50)。因此,我需要一个函数,该函数将采用intas 参数并返回格式正确String的小数点,从末尾算起 2 位数。

说:

int j= 123456 
Integer.toString(j);

//processing...

//output : 1234.56

阅读 54

收藏
2022-08-19

共1个答案

小编典典

int j = 123456;
String x = Integer.toString(j);
x = x.substring(0, 4) + "." + x.substring(4, x.length());
2022-08-19