using System.Collections.Generic;
public static void Main()
var valores = File.ReadAllLines(@"C:\dados\pedro.txt")
.Select(l => (decimal)Convert.ToInt32(l) / 100)
foreach(var val in valores)
public static IEnumerable<string> ReadAllLines(string arquivo)
return new [] { "000010000", "000000010", "00000020" };