Contact: aviboots(AT)netvision.net.il
41,379 questions
53,922 answers
573 users
using System; class Program { static void Main() { double d = 9812347.9085; string dstr = d.ToString(); int total_digits = dstr.Length - 1; Console.Write(total_digits); } } /* run: 11 */