欢迎来到天天文库
浏览记录
ID:22119022
大小:99.00 KB
页数:13页
时间:2018-10-27
《java编程题全集(100题与答案解析)w》由会员上传分享,免费在线阅读,更多相关内容在应用文档-天天文库。
1、WORD资料下载可编辑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.println(year+"年是闰年。");e
4、lseSystem.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=mul*j;}sum=sum+mul;}System.out.println(“1!+2!+3!
5、+……+10!=”+sum);}}3、专业资料整理分享WORD资料下载可编辑依次输入10个学生成绩,判断学生(优秀、良好、中等、及格、不及格)并计算人数(switch)1、使用冒泡排序(数组)publicclassBubbleSort{publicstaticvoidmain(String[]args){int[]array={63,4,24,1,3,5};BubbleSortsorter=newBubbleSort();sorter.sort(array);}//冒泡排序publicvoidsort(int[]array){for(inti=1;i6、y.length;i++)for(intj=0;jarray[j+1]){inttemp=array[j];array[j]=array[j+1];array[j+1]=temp;}}showArray(array);}//遍历数组,并输出数组的元素。publicvoidshowArray(int[]array){for(inti=0;i7、员注册,要求用户名长度不小于3,密码长度不小于6,注册时两次输入密码必须相同(字符串)importjava.util.Scanner;publicclassRegister{Stringname;专业资料整理分享WORD资料下载可编辑Stringpassword;StringnewPassword;///////////publicvoidnameExe(){Scannerinput=newScanner(System.in);System.out.println("请输入用户名,密码和验证密码");System.out.print("用户名:");name=8、input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();while(name.length()<39、10、(password.equals(newPassword)==false)11、12、(password.length()<6)){if(name.length()<3){System.out.println("用户名不能小于3");}if((password.equals(newPassword)==fa13、lse)14、15、password.length()<6){System.out.println("两次输入密码不一样或密码不能小于6位");}System.out.println(""+"请重新输入");System.out.print("用户名:");name=input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();}专业资料整理分享WORD资料下载可编辑System.out.println("注16、册成功!");}}publicclas
6、y.length;i++)for(intj=0;jarray[j+1]){inttemp=array[j];array[j]=array[j+1];array[j+1]=temp;}}showArray(array);}//遍历数组,并输出数组的元素。publicvoidshowArray(int[]array){for(inti=0;i7、员注册,要求用户名长度不小于3,密码长度不小于6,注册时两次输入密码必须相同(字符串)importjava.util.Scanner;publicclassRegister{Stringname;专业资料整理分享WORD资料下载可编辑Stringpassword;StringnewPassword;///////////publicvoidnameExe(){Scannerinput=newScanner(System.in);System.out.println("请输入用户名,密码和验证密码");System.out.print("用户名:");name=8、input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();while(name.length()<39、10、(password.equals(newPassword)==false)11、12、(password.length()<6)){if(name.length()<3){System.out.println("用户名不能小于3");}if((password.equals(newPassword)==fa13、lse)14、15、password.length()<6){System.out.println("两次输入密码不一样或密码不能小于6位");}System.out.println(""+"请重新输入");System.out.print("用户名:");name=input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();}专业资料整理分享WORD资料下载可编辑System.out.println("注16、册成功!");}}publicclas
7、员注册,要求用户名长度不小于3,密码长度不小于6,注册时两次输入密码必须相同(字符串)importjava.util.Scanner;publicclassRegister{Stringname;专业资料整理分享WORD资料下载可编辑Stringpassword;StringnewPassword;///////////publicvoidnameExe(){Scannerinput=newScanner(System.in);System.out.println("请输入用户名,密码和验证密码");System.out.print("用户名:");name=
8、input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();while(name.length()<3
9、
10、(password.equals(newPassword)==false)
11、
12、(password.length()<6)){if(name.length()<3){System.out.println("用户名不能小于3");}if((password.equals(newPassword)==fa
13、lse)
14、
15、password.length()<6){System.out.println("两次输入密码不一样或密码不能小于6位");}System.out.println(""+"请重新输入");System.out.print("用户名:");name=input.next();System.out.print("密码:");password=input.next();System.out.print("验证密码:");newPassword=input.next();}专业资料整理分享WORD资料下载可编辑System.out.println("注
16、册成功!");}}publicclas
此文档下载收益归作者所有