Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc

Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc

ID:52290029

大小:209.50 KB

页数:32页

时间:2020-03-26

Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc_第1页
Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc_第2页
Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc_第3页
Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc_第4页
Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc_第5页
资源描述:

《Java程序设计教程与实训配套教学课件第2版许文宪ppt素材答案Java程序设计教程与实训 第2版 :实训参考答案.doc》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、实训参考答案【实训内容】见第十章。【参考答案】10.1//////////////////////////////////////////////////////////publicclassExer10_1{publicstaticvoidmain(String[]args){//System.out.print("Hello");//第一次运行//System.out.print("Hello");//第二次运行System.out.print("Hello李明");//第二次运行也可以这样写//System.out.print

2、("李明");}}10.2//////////////////////////////////////////////////////////publicclassExer10_2{publicstaticvoidmain(Stringargs[]){charchinaWord='你',japanWord='ぁ';intp1=20328,p2=12358;System.out.println("汉字'你'字在unicode表中的顺序位置:"+(int)chinaWord);System.out.println("日语'ぁ'字在uni

3、code表中的顺序位置:"+(int)japanWord);System.out.println("unicode表中第20328位置上的字符是:"+(char)p1);System.out.println("unicode表中第12358位置上的字符是:"+(char)p2);}}10.3(1)//////////////////////////////////////////////////////////publicclassExer10_3_1{publicstaticvoidmain(String[]args){intval1=5

4、;intval2=6;intresult=0;charop='-';switch(op){case'+':result=val1+val2;break;case'-':result=val1-val2;break;case'*':result=val1*val2;break;case'/':result=val1/val2;break;case'%':result=val1%val2;default:System.out.println("没有找到匹配的操作符");}System.out.println("计算结果为:"+val1+op+v

5、al2+"="+result);}}(2)//////////////////////////////////////////////////////////classExer10_3_2{publicstaticvoidmain(Stringargs[]){intsum=0,i,j;for(i=1;i<=50;i++){//计算1+3+5+7+9…if(i%2==0){continue;}sum=sum+i;}System.out.println("sum="+sum);for(j=2;j<=50;j++){//求50以内的素数for(i

6、=2;i<=j/2;i++){if(j%i==0){break;}}if(i>j/2){System.out.println(""+j+"是素数");}}}}10.4/////////////////////////////////////publicclassExer10_4{publicstaticvoidmain(Stringargs[]){System.out.println(dengcha(3));System.out.println(dengcha(5));System.out.println(dengcha(10));}pub

7、licstaticintdengcha(intn){return1+(n-1)*4;}}10.5///////////////////////////////classComputer{privateStringpc_name;//计算机品牌privateStringpc_color;//计算机颜色privateStringpc_type;//CPU型号privateStringpc_ram;//内存容量privateStringpc_harddisk;//硬盘容量privateintpc_price;//价格privateStringpc

8、_state;//工作状态publicComputer()//默认构造函数,不带参数{pc_name="";//计算机品牌pc_color="";//计算机颜色pc_type="

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。