欢迎来到天天文库
浏览记录
ID:37668941
大小:118.50 KB
页数:8页
时间:2019-05-28
《实验二数据计算与流程控制》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、制作人:李建明实验二(2)、数据计算与流程控制一、实验目的:1.熟练掌握数据计算和流程控制的语句。2.学会使用合适的表达式描述问题。3.熟练使用while、do-while、和for语句实现循环的方法。4.掌握在程序设计中用循环的方法实现各种算法。二、实验要求:掌握数据计算语法规则,编写一个含有分支控制结构的Java应用程序。三、实验内容:1、在main函数中,输入如下内容,并把结果写在每小题后1)、7HelloHello342)、-2333)、制作人:李建明wljvwn4)、355)、6126)、6157)制作人:李建明11341220-20
2、-210737418228)年龄已经大于20岁了20岁以上的人应该学会承担责任...9)b大于4b不大于42、1)要求改程序。将20岁以上输出年轻人,40以上输出中年人,60以上输出老年人制作人:李建明修改后的代码:intage=45;if(age>20&&age<=40)System.out.println("青年人");elseif(age>40&&age<=60)System.out.println("中年人");elseSystem.out.println("老年人");输出结果:中年人2)main函数中输入如下代码,查看输出修改后的代
3、码:charscore='C';switch(score){case'A':制作人:李建明System.out.println("优秀.");break;case'B':System.out.println("良好.");break;case'C':System.out.println("中");break;case'D':System.out.println("及格");break;case'F':System.out.println("不及格");break;default:System.out.println("成绩输入错误");}输出结
4、果:中3)0123456789循环结束!4)写一个for循环语句来代替while语句制作人:李建明for(intcount=0;count<10;count++){System.out.println(count);}System.out.println("循环结束!");源代码:publicclasstest{publicstaticvoidmain(String[]args){/*Stringstr1=5f+"";System.out.println(str1);*//*intivalue=233;bytebvalue=(byte)ival
5、ue;System.out.println(bvalue);*//*doubledvalue=3.98;inttoi=(int)dvalue;System.out.println(toi);*//*Stringresult="";for(inti=0;i<6;i++){intintval=(int)(Math.random()*26+97);result=result+(char)intval;}System.out.println(result);*//*System.out.println(5&9);System.out.println(5
6、
7、9);System.out.println(~-5);System.out.println(5^9);System.out.println(5<<2);System.out.println(-5<<2);System.out.println(-5>>2);System.out.println(-5>>>2);*//*intage=30;if(age>20)制作人:李建明{System.out.println("年龄已经大于20岁了");System.out.println("20岁以上的人应该学会承担责任...");}*//*intb=5;i
8、f(b>4)System.out.println("b大于4");elseb--;System.out.println("b不大于4");*//*intage=45;if(age>20&&age<=40)System.out.println("青年人");elseif(age>40&&age<=60)System.out.println("中年人");elseSystem.out.println("老年人");*//*charscore='C';switch(score){case'A':System.out.println("优秀.");br
9、eak;case'B':System.out.println("良好.");break;case'C':System.out.println("中")
此文档下载收益归作者所有