gpt4 book ai didi

Java如何删除最后一个很长的数字?

转载 作者:行者123 更新时间:2023-11-29 09:43:31 26 4
gpt4 key购买 nike

我正在使用一个查询来根据给定时间获取数据。所以我想获取时间戳并删除它的最后 3 位数字。是否可以?如何?给我一个提示,我会非常感激

最佳答案

如果你想删除数字,除以 10^n:

long x = 1234567890L;

long removeLastNDigits(long x, long n) {
return x / Math.pow(10, n);
}

removeLastNDigits(x, 3) == 1234567L;

正如 dasblinkenlight 所指出的,如果你想将最后 n 个数字置为 0,那么在删除它们之后你需要将它们添加回 0:

long x = 1234567890L;

long zeroLastNDigits(long x, long n) {
long tenToTheN = Math.pow(10, n);
return (x / tenToTheN) * tenToTheN;
}

zeroLastNDigits(x, 3) == 1234567000L;

关于Java如何删除最后一个很长的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29012224/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com