public static int IntLength(int i)
{
if (i < 0)
{
throw new ArgumentOutOfRangeException();
}
if (i == 0)
{
return 1;
}
return (int)Math.Floor(Math.Log10(i)) + 1;
}
{
if (i < 0)
{
throw new ArgumentOutOfRangeException();
}
if (i == 0)
{
return 1;
}
return (int)Math.Floor(Math.Log10(i)) + 1;
}
Keine Kommentare:
Kommentar veröffentlichen