简单,转换成字符串就行了
static void Main(string[] args)
{
int i = 300;
Console.WriteLine(i.ToString().Length);
}
当然,要是你的是浮点数,小数点也会算一位的(实际当中应该也算小数点,当然,你也可以自己排除)。
===============================
不用字符串的话,就这样
static void Main(string[] args)
{
int a = 2134;
int count = 0;
while (a != 0)
{
count++;
a /= 10;
}
Console.WriteLine(count);
}
限于整形的数,浮点数你思考思考就会了
变量(或数字).ToString().Length