欢迎来到天天文库
浏览记录
ID:56527620
大小:184.50 KB
页数:24页
时间:2020-06-27
《Java 面向对象程序设计实践.ppt》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、面向对象程序设计实践1、计算器程序设计问题的提出2、计算器程序设计构思一3、计算器程序设计构思二4、计算器程序设计构思三(类的封装)5、计算机程序设计构思四(继承与多态)6、计算机程序设计构思五(简单工厂模式)公司应聘程序问题:请使用Java语言编写某计算器控制台程序,要求输入两个数和运算符号,得到运算结果计算器程序设计构思一1、在命令行下输入两个数2、输入运算符3、根据运算符执行运算4、运算结果打印输出计算器程序构思一publicclassMyCalc{publicstaticvoidmain(String[]args){StringA,B,C,D;A=“”;B=“”;C=“”
2、;D="";try{BufferedReaderin=newBufferedReader(newInputStreamReader(System.in));//新建输入流读取缓冲对象inSystem.out.println("请输入数字A");A=in.readLine();//读入用户输入的运算数ASystem.out.println("请选择运算符(+、-、*、/):");C=in.readLine();//读入用户输入的运算符CSystem.out.println("请输入数字B");B=in.readLine();//读入用户输入的运算数B}catch(IOExcepti
3、one){};计算器程序构思一续if(C.equals(“+”))//比较运算符是否为“+”{D=Double.toString(Double.parseDouble(A)+Double.parseDouble(B));System.out.println("结果是:"+D);}if(C.equals("-")){D=Double.toString(Double.parseDouble(A)-Double.parseDouble(B));System.out.println("结果是:"+D);}if(C.equals("*")){D=Double.toString(Double
4、.parseDouble(A)*Double.parseDouble(B));System.out.println("结果是:"+D);}if(C.equals("/")){D=Double.toString(Double.parseDouble(A)/Double.parseDouble(B));System.out.println("结果是:"+D);}}}程序代码挑问题….?publicclassMyCalc{publicstaticvoidmain(String[]args){…..StringA,B,D,C;A=“”;B=“”;C=“”;D="";…..if(C.equ
5、als("+")){D=Double.toString(Double.parseDouble(A)+Double.parseDouble(B));System.out.println("结果是:"+D);}if(C.equals("-")){D=Double.toString(Double.parseDouble(A)-Double.parseDouble(B));System.out.println("结果是:"+D);}…..}命名不规范判断分支,这样的写法,意味着每个条件都要判断,等于计算机做了三次无用功计算器程序构思二publicclassMyCalc2{publicst
6、aticvoidmain(String[]args){StringstrNumberA,strNumberB,strResult,strOperate;strNumberA=“”;strNumberB=“”;strOperate=“”;strResult=“”;try{BufferedReaderin=newBufferedReader(newInputStreamReader(System.in));//新建输入流缓冲对象System.out.println("请输入数字A");strNumberA=in.readLine();System.out.println("请选择运算
7、符(+、-、*、/):");strOperate=in.readLine();System.out.println("请输入数字B");strNumberB=in.readLine();}catch(IOExceptione){System.out.println(“你的输入有误!”);};计算器程序构思二续if(strOperate.equals("+"))strResult=Double.toString(Double.parseDouble(strNumberA)+Doub
此文档下载收益归作者所有