Contact: aviboots(AT)netvision.net.il
40,855 questions
53,260 answers
573 users
using System; class Program { static void Main() { float f = 872.2459f; string s = f.ToString(); Console.Write(s.Substring(s.IndexOf(".") + 1, 1)); } } /* run: 2 */
using System; class Program { static void Main() { float f = 23.7846f; Console.Write((int)(Math.Floor(Math.Abs(f) * 10)) % 10); } } /* run: 7 */