import java.io.*; // for I/O //类名:Params //属性: //方法: class Params //这个类的对象被压入栈中 { public int n; //用来存放键盘输入的数字 public int returnAddress; //返回的地址 public Params(int nn, int ra) { n=nn; returnAddress=ra; } } // end class Params //类名:StackX //属性: //方法: cl…
最近穷死了 ,没钱吃饭ing 写点钱给自己吧!public class Test{ public static String getChar(long a){ int b = (int)a; Map map = new HashMap(); map.put(0,"零"); map.put(1,"壹"); map.put(2,"贰"); map.put(3,"叁"); map.put(4,"肆"); map.…