在 int 末尾找到 0 的数字
本文关键字:数字 int | 更新日期: 2023-09-27 18:36:05
我想找出整数末尾的0个数。假设有人进入 2020 年,它应该计数 1,如果数字是 2000,它应该显示 3 等;
我尝试跟随,但没有完成我想要的:(
Console.WriteLine("Enter Number :");
int num = int.Parse(Console.ReadLine());
int count = 0;
for (int i = 1; i < num.ToString().Count(); i++)
{
//some logic
}
Console.WriteLine("Zero in the tail is :");
Console.WriteLine(count);
你没有改变循环中的任何内容 - 所以基本上,在每次迭代中,它要么增加Count
要么不会,并且每次都会做同样的事情 - 所以Count
要么是字符串的长度,要么是 0。
在文本操作方面,我能想到的最简单的选择是:
string text = num.ToString();
int count = text.Length - text.TrimEnd('0').Length;
但是,如果不使用文本操作,您可以只使用除法和余数运算:
int count = 0;
// Keep going while the last digit is 0
while (num > 0 && num % 10 == 0)
{
num = num / 10;
count++;
}
请注意,对于数字 0,这将产生 0 的计数,而第一种方法将给出 1 的计数(因为0.ToString()
是"0")。调整任一代码段以满足您的要求:)
int GetTrailingZerosFromInteger(int no)
{
if (no == 0)
return 1;
int count = 0;
while(no % 10 == 0)
{
no /= 10;
count++;
}
return count;
}
你也可以走数学路
int n = int.Parse(Console.ReadLine());
int totalzero = 0 ;
while(n > 0){
int digit = n % 10;
if(digit == 0)
totalzero++;
else
break;
n = n / 10;
}
你可以通过从后面迭代字符串来做到这一点,如下所示:
var strN = 40300.ToString();
int count = 0;
for (var i = strN.Length - 1; strN[i] == '0'; --i, ++count) ;
Console.WriteLine("Result : " + count);
由于 32 位整数最多可以有 9 个零,因此您可以以非常令人愉悦的方式展开循环:
int digits =
num == 0 ? 0 :
num % 1000000000 == 0 ? 9 :
num % 100000000 == 0 ? 8 :
num % 10000000 == 0 ? 7 :
num % 1000000 == 0 ? 6 :
num % 100000 == 0 ? 5 :
num % 10000 == 0 ? 4 :
num % 1000 == 0 ? 3 :
num % 100 == 0 ? 2 :
num % 10 == 0 ? 1 : 0;