gpt4 book ai didi

c# - 使用 C# 将数字拆分为百十和单位

转载 作者:行者123 更新时间:2023-11-30 18:52:27 25 4
gpt4 key购买 nike

在 C# 中将给定的较大数字拆分为百、十和单位的最佳方法是什么?

例如:如果我输入数字 43928,如何在输出中得到 40000 + 3000 + 900 + 20 + 8?

最佳答案

像这样:

long x = 43928;
long i = 10;

while (x > i / 10)
{
Console.WriteLine(x % i - x % (i / 10));
i *= 10;
}

它会给你输出

8
20
900
3000
40000

关于c# - 使用 C# 将数字拆分为百十和单位,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26362388/

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