欢迎来到天天文库
浏览记录
ID:9047294
大小:60.23 KB
页数:7页
时间:2018-04-15
《河北工业大学java实验一》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、实验一:Java基本语法【实验目的】了解Java的数据类型,掌握各种变量的声明方式,理解运算符的优先级,掌握Java基本数据类型、运算符与表达式,掌握顺序结构、选择结构和循环结构语法的程序设计方法。【实验要求】1、编写一个声明Java不同数据类型变量的程序。2、编写使用不同选择结构的程序。3、编写使用不同循环结构结构的程序。【实验内容】1、声明不同数据类型变量publicclassSimpleType{publicstaticvoidmain(Stringargs[]){byteb=0x55;shorts=0x55f;in
2、ti=1000000;longl=0xfffl;charc='c';floatf=0.23F;doubled=0.7E-3;booleanbool=true;System.out.println("b="+b);System.out.println("s="+s);System.out.println("i="+i);System.out.println("l="+l);System.out.println("c="+c);System.out.println("f="+f);System.out.println("d="
3、+d);System.out.println("bool="+bool);}}2、(1)使用选择结构publicclassTestIf{publicstaticvoidmain(Stringargs[]){booleanleap;intyear=2005;if((year%4==0&&year%100!=0)
4、
5、(year%400==0))//方法一System.out.println(year+"年是闰年");elseSystem.out.println(year+"年不是闰年");year=2008;//方法二if(y
6、ear%4!=0)leap=false;elseif(year%100!=0)leap=true;elseif(year%400!=0)leap=false;elseleap=true;if(leap==true)System.out.println(year+"年是闰年");elseSystem.out.println(year+"年不是闰年");year=2050;//方法三if(year%4==0){if(year%100==0){if(year%400==0)leap=true;elseleap=false;}el
7、seleap=false;}elseleap=false;if(leap==true)System.out.println(year+"年是闰年");elseSystem.out.println(year+"年不是闰年");}}(2)使用switch语句publicclassSwitchTest{publicstaticvoidmain(Stringargs[])throwsjava.io.IOException{chara;System.out.println("Enteranumberfrom1--3:");a=(ch
8、ar)System.in.read();switch(a){case'1':System.out.println("winaCar!");break;case'2':System.out.println("pickedthegoat");break;case'3':System.out.println("gettokeepyour100");break;default:System.out.println("entry");}}}3.使用循环结构(1)使用for语句publicclassTestFor{publicstat
9、icvoidmain(Stringargs[])throwsjava.io.IOException{intfahr,cels;System.out.println("CelsiusFahrenheit");for(cels=0;cels<=100;cels+=5){fahr=cels*9/5+32;System.out.println(cels+""+fahr);}chara;outer://thisisthelabelfortheouterloopfor(inti=0;i<10;i++)for(intj=0;j<10;j
10、++){a=(char)System.in.read();if(a=='b')breakouter;if(a=='c')continueouter;}}}2)使用while语句A、importjava.io.*;publicclassTestWhile{publicstaticvoidmain(Stri
此文档下载收益归作者所有