数字转换为英文

输入为int型非负数,最大值为2^31 - 1 = 2 147 483 647

输出为String英文,最大输出为Two Billion One Hundred Forty Seven Million Four Hundred Eighty Three Thousand Six Hundred Forty Seven

输出要求每个单词首字母大写,之间用空格隔开,不需要用“and”做连词

例如:

123 -> "One Hundred Twenty Three"
12345 -> "Twelve Thousand Three Hundred Forty Five"
1234567 -> "One Million Two Hundred Thirty Four Thousand Five Hundred Sixty Seven"

处理思路

观察数字2 147 483 647,可以看出由4段组成;每段都是0到999的数字

尝试将数字分段处理;截取每段数字,写专门的函数处理0~999的数字;最后将它们连接起来

编制String数组存放需要的数字;需要时从数组中取用

完整Java代码如下:

 /**
  *
  * @author Rust Fisher
  * biggest number = 2 147 483 648 - 1
  * Two Billion One Hundred Forty Seven Million Four Hundred Eighty Three Thousand Six Hundred Forty Seven
  */
 public class Int2Eng {
     public static String numberToWords(int num) {
         String result = "";
         int inputNum = num;
         if (num == 0) {
             result = "Zero";
             return result;
         }

         if (inputNum/1000 == 0 ) {//0 < num < 1000
             return getThousand(inputNum%1000);// 处理 xxx
         }

         result = getThousand(inputNum%1000);
         inputNum = inputNum/1000; //Rust:cut the tail 2 147 483 xxx

         if (inputNum/1000 == 0) {    // 1000 <= num < 1 000 000
             if (result.equals("")) {
                 return (getThousand(inputNum%1000) + " Thousand");
             } else {
                 return (getThousand(inputNum%1000) + " Thousand " + result);
             }
         } else {// 1 000 000 < num
             if (result.equals("") && inputNum%1000 == 0) {
                 result = getThousand(inputNum%1000);//do nothing
             } else if (!result.equals("") && inputNum%1000 != 0){
                 result = getThousand(inputNum%1000) + " Thousand " + result;
             } else if (result.equals("") && inputNum%1000 != 0) {
                 result = getThousand(inputNum%1000) + " Thousand" + result;
             }
         }

         inputNum = inputNum/1000;
         if (inputNum/1000 == 0) {//1 000 000 <= num < 1 000 000 000
             if (result.equals("")) {
                 return (getThousand(inputNum%1000) + " Million");
             } else {
                 return (getThousand(inputNum%1000) + " Million " + result);
             }
         } else {
             if (result.equals("") && inputNum%1000 == 0) {
                 result = getThousand(inputNum%1000);
             } else if (!result.equals("") && inputNum%1000 != 0){
                 result = getThousand(inputNum%1000) + " Million " + result;
             } else if (result.equals("") && inputNum%1000 != 0) {
                 result = getThousand(inputNum%1000) + " Million" + result;
             }
         }

         inputNum = inputNum/1000;
         if (result.equals("")) {
             if (inputNum == 1) {
                 return ("One"+ " Billion");
             } else if (inputNum == 2) {
                 return ("Two"+ " Billion");
             }
         } else {
             if (inputNum == 1) {
                 return ("One"+ " Billion " + result);
             } else if (inputNum == 2) {
                 return ("Two"+ " Billion " + result);
             }
         }
         return result;
     }

     public static String getThousand(int input) {
         String MaxNum = "Two Billion One Hundred Forty Seven Million" +
                 " Four Hundred Eighty Three Thousand Six Hundred Forty Eight";
         String single[] = {"Zero", "One", "Two", "Three", "Four", "Five", "Six",
                 "Seven", "Eight", "Nine", "Ten", "Eleven", "Twelve", "Thirteen",
                 "Fourteen", "Fifteen", "Sixteen", "Seventeen", "Eighteen", "Nineteen"};
         String tens[] = {"Twenty","Thirty","Forty","Fifty","Sixty","Seventy","Eighty","Ninety"};

         String output = "";

         int res1 = input%1000;
         if (res1/100 != 0) {
             output = output + single[res1/100] + " Hundred";
         }
         res1 = res1%100;// 1~99

         if (res1 == 0) {
             // do nothing
         } else if (res1 < 20) {
             if (output.equals("")) {
                 output = output + single[res1];
             } else {
                 output = output + " " + single[res1];
             }
             return output;
         } else if (res1 >= 20) {
             if (output.equals("")) {
                 output = tens[res1/10 - 2];
             } else {
                 output = output + " " + tens[res1/10 - 2];
             }
         }

         res1 = res1%10;
         if (res1 == 0) {

         } else {
             output = output +  " " +single[res1];
         }
         return output;
     }

     public static void main(String args[]) {

         System.out.println(numberToWords(2127483622));
         System.out.println(numberToWords(12));
         System.out.println(numberToWords(3555000));
         System.out.println(numberToWords(1000));
         System.out.println(numberToWords(1000000));
         System.out.println(numberToWords(2000000010));

     }
 }

输出:


Two Billion One Hundred Twenty Seven Million Four Hundred Eighty Three Thousand Six Hundred Twenty Two
Twelve
Three Million Five Hundred Fifty Five Thousand
One Thousand
One Million
Two Billion Ten


整个程序是顺序执行的,条件合适时即返回结果

把int型非负数转换为英文的更多相关文章

  1. Linux C 知识 char型数字转换为int型 int型 转换为Char

    前言 在九度oj做acm的时候,经常会遇到了char类型和int类型相互转化的问题,这里进行一下总结.今后,可能会多次更新博客,因为半年做了很多总结,但是都是保存在word文档上了,现在开始慢慢向CS ...

  2. C# ASP.NET 转换为int型的方法 很实用

    很多新手在搞c#或者.net开发的时候总会碰到一些小问题,如何知道字符能不能为int型  在这里我写了一个小的函数仅供大家参考: /// <summary> /// 判断是不是int型 / ...

  3. sqlserver中将varchar类型转换为int型再进行排序的方法

    sql中把varchar类型转换为int型然后进行排序,如果我们数据库的ID设置为varchar型的 在查询的时候order by id的话 如果我们数据库的ID设置为varchar型的 在查询的时候 ...

  4. string型的“600.000”如何转换为int型

    string型的“600.000”怎么转换为int型?为什么我用int.parse不能转换? ------解决方案--------------------int.Parse("600.000 ...

  5. C字符串和C++中string的区别 &&&&C++中int型与string型互相转换

    在C++中则把字符串封装成了一种数据类型string,可以直接声明变量并进行赋值等字符串操作.以下是C字符串和C++中string的区别:   C字符串 string对象(C++) 所需的头文件名称 ...

  6. 假设result是一个float型变量,其值为27.32,value是一个int型变量,其值为15执行以下语句后,两个便利的值分别是多少?为什么?

    假设result是一个float型变量,其值为27.32,value是一个int型变量,其值为15执行以下语句后,两个便利的值分别是多少?为什么? 在执行这条语句的过程中,保存在result中的值被读 ...

  7. Java中String转int型的方法以及错误处理

    应要求,本周制作了一个判断一个年份是否是闰年的程序.逻辑很简单,这里就不贴代码了.可是,在这次程序编写中发现了一个问题. 在输入年份时,如果输入1)字母2)空3)超过Int上限时,就会抛excepti ...

  8. int型、long型和long long型

    long long本质上还是整型,只不过是一种超长的整型.int型:32位整型,取值范围为-2^31 ~ (2^31 - 1) . long:在32位系统是32位整型,取值范围为-2^31 ~ (2^ ...

  9. int型的数到底最大值是多少?

    本文摘自:http://blog.csdn.net/friendbaby/article/details/6822690 刚才在百度知道上看见一个网友问int型的数最大能存多少.这个问题其实计算机系统 ...

随机推荐

  1. centos rabbitmq 安装

    MQ 的一个产品[消息队列] rabbitmq 的本质<1>rabbitmq 是用什么语言编写的? => erlang<2>rabbitmq 其实是遵循amqp 协议的一 ...

  2. TreeSet集合排序方式二:定制排序Comparator

    Comparator有两种实现方式: 1,匿名内部类 2,创建一个类用于实现Comparator,该类创建的对象就是比较器 Person类 public class Person implements ...

  3. Dom元素的Property和Attribute

    Attribute就是DOM节点自带的属性,例如html中常用的id.class.title.align等: 而Property是这个DOM元素作为对象,其附加的内容,例如childNodes.fir ...

  4. 初识Java(2) 变量与数据类型

    一. 变量 1.变量是内存中的一个标识符号,用于存储数据 2.变量命名规则 1)  必须以字母.下划线 _ .美元符号 $ 开头 2) 变量中,可以包括数字 3) 变量中,不能出现特殊的符号,空格 4 ...

  5. Lucene全文搜索之分词器:使用IK Analyzer中文分词器(修改IK Analyzer源码使其支持lucene5.5.x)

    注意:基于lucene5.5.x版本 一.简单介绍下IK Analyzer IK Analyzer是linliangyi2007的作品,再此表示感谢,他的博客地址:http://linliangyi2 ...

  6. jQuery 提供多个与 AJAX 有关的方法。

    jQuery 提供多个与 AJAX 有关的方法. 通过 jQuery AJAX 方法,您能够使用 HTTP Get 和 HTTP Post 从远程服务器上请求文本.HTML.XML 或 JSON - ...

  7. 一周一个小demo — 前端后台的交互实例

    这一周呢,本K在大神的指导下,完成了一个利用ajax与php文件上传处理相结合的一个留言板功能的小实例,下面就让本K来带大家瞅瞅如何实现这一种功能. 一.界面概览 首先我们来看一下这个小demo的具体 ...

  8. HTML基础了解

     对HTML最基本的认识和编写:"我的第一个网页" HTML是什么: 它的全称是Hyper Text Markup Language超文本标记语言,页面中包括有视频.图片.链接等其 ...

  9. java利用反射获取类的属性及类型

    java利用反射获取类的属性及类型. import java.lang.reflect.Field; import java.math.BigDecimal; import java.util.Map ...

  10. CSS3学习系列之盒样式(二)

    text-overflow属性 当通过把overflow属性的属性值设定为"hidden"的方法,将盒中容纳不下的内容隐藏起来时,如果使用text-overflow属性,可以在盒的 ...