Package br.com.caelum.stella.example.inwords

Source Code of br.com.caelum.stella.example.inwords.ExemploDeExtenso

package br.com.caelum.stella.example.inwords;

import br.com.caelum.stella.inwords.FormatoDeExtenso;
import br.com.caelum.stella.inwords.NumericToWordsConverter;

public class ExemploDeExtenso {

  public static void main(String[] args) {
    FormatoDeExtenso formato =
      new FormatoDeSegundosComMilesimos();
    NumericToWordsConverter converter =
      new NumericToWordsConverter(formato);
    String tempo = converter.toWords(9.52);
    String message = "Técnico diz que Bolt poderia " +
        "ter feito 100m em " + tempo;
   
    System.out.println(message);
    // Técnico diz que Bolt poderia ter feito 100m
    // em nove segundos e quinhentos e vinte milésimos de segundo
  }
}
TOP

Related Classes of br.com.caelum.stella.example.inwords.ExemploDeExtenso

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.