公共類別號
{
公共編號(){}
靜態字符串【】bigNum={“零“、“壹“、“二“、“三“、“四“、“五“、“六“、“七“、“八“和“九“};
靜態字符串getNUM(字符串str)
{
int t = integer . parse int(str);
return bigNum【t】;
}
公共靜態void main(String【】args)
{
嘗試
{
String strbig =新字符串(““);
System.out.print(“請輸入壹個數字:“);
Scanner sc =新掃描儀(system . in);
long num = sc . next long();
string temp = string . value of(num);
int b=temp.indexOf(“。“);
int s = temp . length()-(b+ 1);
int j = b;
for(int I = 0;我& ltb;i++) {
strbig+= getNUM(temp . substring(I,I+1));
j-;
}
temp = temp . substring(b+ 1,temp . length());
for(int I = 0;我& lts;i++)
{
strbig+= getNUM(temp . substring(I,I+1));
}
System.out.println(“轉換結果:“+strbigs“;
}
catch(例外情況)
{
System.out.println(“請輸入壹個整數“);
}
}
}