本博客是自己在学习和工作途中的积累与总结,仅供自己参考,也欢迎大家转载,转载时请注明出处 http://www.cnblogs.com/king-xg/p/6839738.html 将阿拉伯数字转换成中文汉字,方法自定义函数 create or replace function formate(val in number) ); begin then res:='一'; elsif val= then res:='二'; elsif val= then res:='三'; elsif val
//题目,做一个输入金额数字,输出转换成中文的金额名称.public class Test { public static void main(String[] args) { System.out.println("欢迎使用数字转换器(Designed by wujj)!!"); String in; boolean isRunning = true; Scanner scanner = new Scanner(System.in); while (isRunning) { Syst