Contact: aviboots(AT)netvision.net.il
41,446 questions
53,993 answers
573 users
using System; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { long n = 9987262153; Console.WriteLine("The total number of digits is: {0}", n.ToString().Length); } } } /* run: The total number of digits is: 10 */