欢迎来到天天文库
浏览记录
ID:42364449
大小:111.50 KB
页数:15页
时间:2019-09-13
《JAVA编程题全集(100题及问题详解)..》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、实用标准文档Java程序设计总复习题1、编写一个Java程序,用if-else语句判断某年份是否为闰年。(分支)//ProgrammeNameLeapYear.javapublicclassLeapYear{publicstaticvoidmain(Stringargs[]){intyear=2010;if(args.length!=0)year=Integer.parseInt(args[0]);if((year%4==0&&year%100!=0)
2、
3、(year%400==0))System.out.p
4、rintln(year+"年是闰年。");elseSystem.out.println(year+"年不是闰年。");}}//if-else语句2、编写一个Java程序在屏幕上输出1!+2!+3!+……+10!的和。(循环)//programmenameForTest.javapublicclassForTest{publicstaticvoidmain(Stringargs[]){inti,j,mul,sum=0;for(i=1;i<=10;i++){mul=1;for(j=1,j<=i;j++){mul
5、=mul*j;}sum=sum+mul;}System.out.println(“1!+2!+3!+……+10!=”+sum);}}3、文案大全实用标准文档依次输入10个学生成绩,判断学生(优秀、良好、中等、及格、不及格)并计算人数(switch)1、使用冒泡排序(数组)publicclassBubbleSort{publicstaticvoidmain(String[]args){int[]array={63,4,24,1,3,5};BubbleSortsorter=newBubbleSort();sor
6、ter.sort(array);}//冒泡排序publicvoidsort(int[]array){for(inti=1;iarray[j+1]){inttemp=array[j];array[j]=array[j+1];array[j+1]=temp;}}showArray(array);}//遍历数组,并输出数组的元素。publicvoidshowArray(int[]array
7、){for(inti=0;i8、nameExe(){Scannerinput=newScanner(System.in);System.out.println("请输入用户名,密码和验证密码");System.out.print("用户名:");name=input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();while(name.length()<39、10、(password.e11、quals(newPassword)==false)12、13、(password.length()<6)){if(name.length()<3){System.out.println("用户名不能小于3");}if((password.equals(newPassword)==false)14、15、password.length()<6){System.out.println("两次输入密码不一样或密码不能小于6位");}System.out.println(""+"请重新输入");System.out.prin16、t("用户名:");name=input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();}文案大全实用标准文档System.out.println("注册成功!");}}publicclassVerify{publicstaticvoidmain(Str
8、nameExe(){Scannerinput=newScanner(System.in);System.out.println("请输入用户名,密码和验证密码");System.out.print("用户名:");name=input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();while(name.length()<3
9、
10、(password.e
11、quals(newPassword)==false)
12、
13、(password.length()<6)){if(name.length()<3){System.out.println("用户名不能小于3");}if((password.equals(newPassword)==false)
14、
15、password.length()<6){System.out.println("两次输入密码不一样或密码不能小于6位");}System.out.println(""+"请重新输入");System.out.prin
16、t("用户名:");name=input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();}文案大全实用标准文档System.out.println("注册成功!");}}publicclassVerify{publicstaticvoidmain(Str
此文档下载收益归作者所有