Java基础编程题.doc
《Java基础编程题.doc》由会员分享,可在线阅读,更多相关《Java基础编程题.doc(51页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、50道JAVA基础编程练习题【程序6】题目:输入两个正整数m和n,求其最大公约数和最小公倍数。程序分析:利用辗除法。public class Prog6public static void main(String args)int m,n;trym = Integer.parseInt(args0);n = Integer.parseInt(args1);catch(ArrayIndexOutOfBoundsException e)System.out.println(输入有误);return;max_min(m,n);/求最大公约数和最小公倍数private static void max_
2、min(int m, int n)int temp = 1;int yshu = 1;int bshu = m*n;if(nm)temp = n;n = m;m = temp;while(m!=0)temp = n%m;n = m;m = temp;yshu = n;bshu /= n;System.out.println(m+和+n+的最大公约数为+yshu);System.out.println(m+和+n+的最小公倍数为+bshu);【程序7】题目:输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。程序分析:利用while语句,条件为输入的字符不为n.import jav
3、a.util.Scanner;public class Prog7_1public static void main(String args)System.out.print(请输入一串字符:);Scanner scan = new Scanner(System.in);String str = scan.nextLine();/将一行字符转化为字符串scan.close();count(str);/统计输入的字符数private static void count(String str)String E1 = u4e00-u9fa5;/汉字String E2 = a-zA-Z;String
4、E3 = 0-9;String E4 = s;/空格int countChinese = 0;int countLetter = 0;int countNumber = 0;int countSpace = 0;int countOther = 0;char array_Char = str.toCharArray();/将字符串转化为字符数组String array_String = new Stringarray_Char.length;/汉字只能作为字符串处理for(int i=0;iarray_Char.length;i+) array_Stringi = String.valueOf
5、(array_Chari);/遍历字符串数组中的元素for(String s:array_String)if(s.matches(E1) countChinese+;else if(s.matches(E2) countLetter+;else if(s.matches(E3) countNumber+;else if(s.matches(E4) countSpace+;else countOther+;System.out.println(输入的汉字个数:+countChinese);System.out.println(输入的字母个数:+countLetter);System.out.pr
6、intln(输入的数字个数:+countNumber);System.out.println(输入的空格个数:+countSpace);System.out.println(输入的其它字符个数:+countSpace);import java.util.*;public class Prog7_2public static void main(String args) System.out.println(请输入一行字符:); Scanner scan = new Scanner(System.in); String str = scan.nextLine(); scan.close(); c
7、ount(str);/统计输入的字符private static void count(String str)List list = new ArrayList();char array_Char = str.toCharArray();for(char c:array_Char) list.add(String.valueOf(c);/将字符作为字符串添加到list表中Collections.sort(list);/排序for(String s:list)int begin = list.indexOf(s);int end = list.lastIndexOf(s);/索引结束统计字符数i
8、f(list.get(end)=s) System.out.println(字符+s+有+(end-begin+1)+个);【程序8】题目:求s=a+aa+aaa+aaaa+aa.a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。 程序分析:关键是计算出每一项的值。import java.util.Scanner;public class Prog8public static void main(String args)System.out.print(求s=a+aa+aaa+aaaa+.的值,请输入a的值:);Scanner s
9、can = new Scanner(System.in).useDelimiter(s*);/以空格作为分隔符int a = scan.nextInt();int n = scan.nextInt();scan.close();/关闭扫描器System.out.println(expressed(2,5)+add(2,5); /求和表达式private static String expressed(int a,int n)StringBuffer sb = new StringBuffer();StringBuffer subSB = new StringBuffer();for(int i
10、=1;in+1;i+) subSB = subSB.append(a); sb = sb.append(subSB); if(in) sb = sb.append(+);sb.append(=);return sb.toString();/求和private static long add(int a,int n)long sum = 0;long subSUM = 0;for(int i=1;in+1;i+)subSUM = subSUM*10+a;sum = sum+subSUM;return sum;【程序9】题目:一个数如果恰好等于它的因子之和,这个数就称为完数。例如6=123.编程找
11、出1000以内的所有完数。public class Prog9public static void main(String args)int n = 10000;compNumber(n);/求完数private static void compNumber(int n)int count = 0;System.out.println(n+以内的完数:);for(int i=1;in+1;i+)int sum = 0;for(int j=1;ji/2+1;j+)if(i%j)=0)sum += j;if(sum=i) System.out.print(i+ ); if(count+)%5=0)
12、 System.out.println(); 【程序10】题目:一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在 第10次落地时,共经过多少米?第10次反弹多高?import java.util.Scanner;public class Prog10public static void main(String args)System.out.print(请输入小球落地时的高度和求解的次数:);Scanner scan = new Scanner(System.in).useDelimiter(s);int h = scan.nextInt();int n = scan.
13、nextInt();scan.close();distance(h,n);/小球从h高度落下,经n次反弹后经过的距离和反弹的高度private static void distance(int h,int n)double length = 0;for(int i=0;in;i+)length += h;h /=2.0 ;System.out.println(经过第+n+次反弹后,小球共经过+length+米,+第+n+次反弹高度为+h+米);【程序11】题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?程序分析:可填在百位、十位、个位的数字都是1、2、3、4。
14、组成所有的排列后再去 掉不满足条件的排列。public class Prog11public static void main(String args)int count = 0;int n = 0;for(int i=1;i5;i+)for(int j=1;j5;j+)if(j=i) continue;for(int k=1;k)profit = profit_sub-;profit_sub = ;prize += profit*0.01;if(profit)profit = profit_sub-;profit_sub = ;prize += profit*0.015; if(profit
15、)profit = profit_sub-;profit_sub = ;prize += profit*0.03;if(profit)profit = profit_sub-;profit_sub = ;prize += prize*0.05;if(profit)profit = profit_sub-;profit_sub = ;prize += profit*0.075;prize += profit_sub*0.1;return prize;【程序13】题目:一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?程序分析:在10万以内判断,先将该数加上
16、100后再开方,再将该数加上268后再开方,如果开方后的结果满足如下条件,即是结果。public class Prog13public static void main(String args)int n=0;for(int i=0;i;i+)if(isCompSqrt(i+100) & isCompSqrt(i+268)n = i;break;System.out.println(所求的数是:+n);/判断完全平方数private static boolean isCompSqrt(int n)boolean isComp = false;for(int i=1;iMath.sqrt(n)+
17、1;i+)if(n=Math.pow(i,2)isComp = true;break;return isComp;【程序14】题目:输入某年某月某日,判断这一天是这一年的第几天?(变形:输入某一天,输出一千天后是那一天)程序分析:以3月5日为例,应该先把前两个月的加起来,然后再加上5天即本年的第几天,特殊情况,闰年且输入月份大于3时需考虑多加一天。import java.util.Scanner;public class Prog14public static void main(String args)Scanner scan = new Scanner(System.in).useDeli
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- Java 基础 编程
限制150内