fork download
  1. using static System.Console;
  2. using static System.Convert;
  3.  
  4. public class Program {
  5. public static void Main() {
  6. var campo = "000001010";
  7. decimal valor = ToInt32(campo) / 100M;
  8. WriteLine(valor);
  9. }
  10. }
  11.  
  12. //https://pt.stackoverflow.com/q/248631/101
Success #stdin #stdout 0.02s 16416KB
stdin
Standard input is empty
stdout
10.1