minafaw3

how to use number to words

Jan 16th, 2016
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. String phrase = "12345.67" ;
  2. Float num = new Float( phrase ) ;
  3. int dollars = (int)Math.floor( num ) ;
  4. int cent = (int)Math.floor( ( num - dollars ) * 100.0f ) ;
  5.  
  6. String s = "$ " + EnglishNumberToWords.convert( dollars ) + " and "
  7. + EnglishNumberToWords.convert( cent ) + " cents" ;
Add Comment
Please, Sign In to add comment