当前位置:   article > 正文

常见Java编程面试题分析及答案解析-50篇_java面试题

java面试题

1 古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少?  

 

  1. //这是一个菲波拉契数列问题
  2. public class lianxi01 {
  3. public static void main(String[] args) {
  4. System.out.println("第1个月的兔子对数:    1");
  5. System.out.println("第2个月的兔子对数:    1");
  6. int f1 = 1, f2 = 1, f, M=24;
  7.      for(int i=3; i<=M; i++) {
  8.       f = f2;
  9.       f2 = f1 + f2;
  10.       f1 = f;
  11.       System.out.println("第" + i +"个月的兔子对数: "+f2);
  12.          }
  13. }
  14. }

2 判断101-200之间有多少个素数,并输出所有素数。
程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除, 则表明此数不是素数,反之是素数。   

  1. public class lianxi02 {
  2. public static void main(String[] args) {
  3.     int count = 0;
  4.     for(int i=101; i<200; i+=2) {
  5.      boolean b = false;
  6.      for(int j=2; j<=Math.sqrt(i); j++)
  7.      {
  8.         if(i % j == 0) { b = false; break; }
  9.          else           { b = true; }
  10.      }
  11.         if(b == true) {count ++;System.out.println(i );}
  12.                                   }
  13.     System.out.println( "素数个数是: " + count);
  14. }
  15. }

3 打印出所有的 "水仙花数 ",所谓 "水仙花数 "是指一个三位数,其各位数字立方和等于该数本身。例如:153是一个 "水仙花数 ",因为153=1的三次方+5的三次方+3的三次方。

  1. public class lianxi03 {
  2. public static void main(String[] args) {
  3.      int b1, b2, b3;
  4.      for(int m=101; m<1000; m++) {
  5.       b3 = m / 100;
  6.       b2 = m % 100 / 10;
  7.       b1 = m %    10;
  8.       if((b3*b3*b3 + b2*b2*b2 + b1*b1*b1) == m) {
  9.       System.out.println(m+"是一个水仙花数"); }
  10.      }
  11. }
  12. }  

 

4 将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。

   

  1. import java.util.*;
  2. public     class     lianxi04{
  3.     public static void main(String[] args) {
  4.         Scanner s = new Scanner(System.in);
  5.         System.out.print( "请键入一个正整数:     ");
  6.         int    n    = s.nextInt();
  7.         int k=2;
  8.         System.out.print(n + "=" );
  9.         while(k <= n) {
  10.           if(k == n) {System.out.println(n);break;}
  11.             else if( n % k == 0) {System.out.print(k + "*");n = n / k; }
  12.                     else    k++;
  13.                    }
  14.      }
  15.     }


程序分析:对n进行分解质因数,应先找到一个最小的质数k,然后按下述步骤完成:   
(1)如果这个质数恰等于n,则说明分解质因数的过程已经结束,打印出即可。   
(2)如果n <> k,但n能被k整除,则应打印出k的值,并用n除以k的商,作为新的正整数你n,重复执行第一步。   
(3)如果n不能被k整除,则用k+1作为k的值,重复执行第一步。  


5 利用条件运算符的嵌套来完成此题:学习成绩> =90分的同学用A表示,60-89分之间的用B表示,60分以下的用C表示。   

  1. import java.util.*;
  2. public class lianxi05 {
  3. public static void main(String[] args) {
  4.      int x;
  5.      char grade;
  6.      Scanner s = new Scanner(System.in);
  7.      System.out.print( "请输入一个成绩: ");
  8.      x = s.nextInt();  
  9.      grade = x >= 90 ? 'A'
  10.            : x >= 60 ? 'B'
  11.            :'C';
  12.     System.out.println("等级为:"+grade);
  13.   
  14. }
  15. }


6 输入两个正整数m和n,求其最大公约数和最小公倍数。   
 

  1. /**在循环中,只要除数不等于0,用较大数除以较小的数,
  2. 将小的一个数作为下一轮循环的大数,取得的余数作为下一轮循环的较小的数,
  3. 如此循环直到较小的数的值为0,返回较大的数,此数即为最大公约数,
  4. 最小公倍数为两数之积除以最大公约数。
  5. * /
  6. import java.util.*;
  7. public    class     lianxi06     {
  8. public static void main(String[] args) {
  9. int     a ,b,m;
  10. Scanner s = new Scanner(System.in);
  11. System.out.print( "键入一个整数: ");
  12. a = s.nextInt();
  13. System.out.print( "再键入一个整数: ");
  14. b = s.nextInt();
  15.       deff cd = new deff();
  16.       m = cd.deff(a,b);
  17.       int n = a * b / m;
  18.       System.out.println("最大公约数: " + m);
  19.       System.out.println("最小公倍数: " + n);
  20. }
  21. }
  22. class deff{
  23. public int deff(int x, int y) {
  24.      int t;
  25.      if(x < y) {
  26.       t = x;
  27.       x = y;
  28.       y = t;
  29.      }  
  30.      while(y != 0) {
  31.       if(x == y) return x;
  32.       else {
  33.        int k = x % y;
  34.        x = y;
  35.        y = k;
  36.       }
  37.      }
  38.      return x;
  39. }
  40. }


7 输入一行字符,分别统计出其中英文字母、空格、数字和其它字符的个数。   

  1. import java.util.*;
  2. public class lianxi07 {
  3. public static void main(String[] args) {
  4. int digital = 0;
  5. int character = 0;
  6. int other = 0;
  7. int blank = 0;
  8.      char[] ch = null;
  9.      Scanner sc = new Scanner(System.in);
  10.      String s = sc.nextLine();
  11.      ch = s.toCharArray();
  12.      for(int i=0; i<ch.length; i++) {
  13.       if(ch >= '0' && ch <= '9') {
  14.        digital ++;
  15.       } else if((ch >= 'a' && ch <= 'z') || ch > 'A' && ch <= 'Z') {
  16.        character ++;
  17.       } else if(ch == ' ') {
  18.        blank ++;
  19.       } else {
  20.        other ++;
  21.       }
  22.       }
  23.      System.out.println("数字个数: " + digital);
  24.      System.out.println("英文字母个数: " + character);
  25.      System.out.println("空格个数: " + blank);
  26.      System.out.println("其他字符个数:" + other );
  27. }
  28. }

8 求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加有键盘控制。   

  1. import java.util.*;
  2. public class lianxi08 {
  3. public static void main(String[] args) {
  4.      long a , b = 0, sum = 0;
  5.      Scanner s = new Scanner(System.in);
  6.      System.out.print("输入数字a的值: ");
  7.      a = s.nextInt();
  8.      System.out.print("输入相加的项数:");
  9.      int n = s.nextInt();
  10.      int i = 0;
  11.      while(i < n) {
  12.       b = b + a;
  13.       sum = sum + b;
  14.       a = a * 10;
  15.       ++ i;
  16.      }
  17.       System.out.println(sum);
  18. }
  19. }


9 一个数如果恰好等于它的因子之和,这个数就称为 "完数 "。例如6=1+2+3.编程     找出1000以内的所有完数。   
 

  1. public class lianxi09 {
  2. public static void main(String[] args) {
  3.      System.out.println("1到1000的完数有: ");
  4.      for(int i=1; i<1000; i++) {
  5.       int t = 0;
  6.       for(int j=1; j<= i/2; j++) {
  7.        if(i % j == 0) {
  8.         t = t + j;
  9.        }
  10.       }
  11.       if(t == i) {
  12.        System.out.print(i + "     ");
  13.       }
  14.      }
  15. }

10 一球从100米高度自由落下,每次落地后反跳回原高度的一半;再落下,求它在     第10次落地时,共经过多少米?第10次反弹多高?

  1. public class lianxi10 {
  2. public static void main(String[] args) {
  3.       double h = 100,s = 100;
  4.       for(int i=1; i<10; i++) {
  5.       s = s + h;
  6.       h = h / 2;
  7.      }
  8.      System.out.println("经过路程:" + s);
  9.      System.out.println("反弹高度:" + h / 2);
  10. }
  11. }


11 有1、2、3、4四个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?   

  1. public class lianxi11 {
  2. public static void main(String[] args) {
  3.      int count = 0;
  4.      for(int x=1; x<5; x++) {
  5.       for(int y=1; y<5; y++) {
  6.        for(int z=1; z<5; z++) {
  7.         if(x != y && y != z && x != z) {
  8.          count ++;
  9.          System.out.println(x*100 + y*10 + z );
  10.         }
  11.        }
  12.       }
  13.      }
  14.      System.out.println("共有" + count + "个三位数");
  15. }
  16. }


12   企业发放的奖金根据利润提成。利润(I)低于或等于10万元时,奖金可提10%;利润高于10万元,低于20万元时,低于10万元的部分按10%提成,高于10万元的部分,可可提成7.5%;20万到40万之间时,高于20万元的部分,可提成5%;40万到60万之间时高于40万元的部分,可提成3%;60万到100万之间时,高于60万元的部分,可提成1.5%,高于100万元时,超过100万元的部分按1%提成,从键盘输入当月利润,求应发放奖金总数?   

  1. import java.util.*;
  2. public class lianxi12 {
  3. public static void main(String[] args) {
  4.      double x = 0,y = 0;
  5.      System.out.print("输入当月利润(万):");
  6.      Scanner s = new Scanner(System.in);
  7.      x = s.nextInt();
  8.      if(x > 0 && x <= 10) {
  9.      y = x * 0.1;
  10.      } else if(x > 10 && x <= 20) {
  11.       y = 10 * 0.1 + (x - 10) * 0.075;
  12.      } else if(x > 20 && x <= 40) {
  13.       y = 10 * 0.1 + 10 * 0.075 + (x - 20) * 0.05;
  14.      } else if(x > 40 && x <= 60) {
  15.       y = 10 * 0.1 + 10 * 0.075 + 20 * 0.05 + (x - 40) * 0.03;
  16.      } else if(x > 60 && x <= 100) {
  17.       y = 20 * 0.175 + 20 * 0.05 + 20 * 0.03 + (x - 60) * 0.015;
  18.      } else if(x > 100) {
  19.       y = 20 * 0.175 + 40 * 0.08 + 40 * 0.015 + (x - 100) * 0.01;
  20.      }
  21.      System.out.println("应该提取的奖金是 " + y + "万");
  22. }
  23. }

13  一个整数,它加上100后是一个完全平方数,再加上168又是一个完全平方数,请问该数是多少?   

  1. public class lianxi13 {
  2. public static void main(String[] args) {
  3.      for(int x =1; x<100000; x++) {
  4.       if(Math.sqrt(x+100) % 1 == 0) {
  5.        if(Math.sqrt(x+268) % 1 == 0) {
  6.         System.out.println(x + "加100是一个完全平方数,再加168又是一个完全平方数");
  7.        }
  8.       }
  9.      }
  10. }
  11. }
  12. /*按题意循环应该从-100开始(整数包括正整数、负整数、零),这样会多一个满足条件的数-99。
  13. 但是我看到大部分人解这道题目时都把题中的“整数”理解成正整数,我也就随大流了。*/


14 输入某年某月某日,判断这一天是这一年的第几天?   

  1. import java.util.*;
  2. public class lianxi14 {
  3. public static void main(String[] args) {
  4.      int year, month, day;
  5.      int days = 0;
  6.      int d = 0;
  7.      int e;
  8.      input fymd = new input();
  9.      do {
  10.      e = 0;
  11.      System.out.print("输入年:");
  12.      year =fymd.input();
  13.      System.out.print("输入月:");
  14.      month = fymd.input();
  15.      System.out.print("输入天:");
  16.      day = fymd.input();
  17.      if (year < 0 || month < 0 || month > 12 || day < 0 || day > 31) {
  18.      System.out.println("输入错误,请重新输入!");
  19.      e=1 ;
  20.      }
  21.      }while( e==1);
  22.       for (int i=1; i <month; i++) {
  23.       switch (i) {
  24.       case 1:
  25.       case 3:
  26.       case 5:
  27.       case 7:
  28.       case 8:
  29.       case 10:
  30.       case 12:
  31.        days = 31;
  32.       break;
  33.       case 4:
  34.       case 6:
  35.       case 9:
  36.       case 11:
  37.        days = 30;
  38.       break;
  39.       case 2:
  40.        if ((year % 400 == 0) || (year % 4 == 0 && year % 100 != 0)) {
  41.         days = 29;
  42.        } else {
  43.         days = 28;
  44.        }
  45.        break;
  46.       }
  47.       d += days;
  48.       }
  49.      System.out.println(year + "-" + month + "-" + day + "是这年的第" + (d+day) + "天。");
  50. }
  51. }
  52. class input{
  53. public int input() {
  54.      int value = 0;
  55.      Scanner s = new Scanner(System.in);
  56.      value = s.nextInt();
  57.      return value;
  58. }
  59. }

15 输入三个整数x,y,z,请把这三个数由小到大输出。   

  1. import java.util.*;
  2. public class lianxi15 {
  3. public static void main(String[] args) {
  4.      input fnc = new input();
  5.      int x=0, y=0, z=0;
  6.      System.out.print("输入第一个数字:");
  7.       x = fnc.input();
  8.      System.out.print("输入第二个数字:");
  9.       y = fnc.input();
  10.      System.out.print("输入第三个数字:");
  11.       z = fnc.input();   
  12.     if(x > y) {
  13.       int t = x;
  14.       x = y;
  15.       y = t;
  16.      }
  17.     if(x > z) {
  18.       int t = x;
  19.       x = z;
  20.       z = t;
  21.      }
  22.     if(y > z) {
  23.       int t = y;
  24.       y = z;
  25.       z = t;
  26.      }
  27.     System.out.println( "三个数字由小到大排列为: "+x + " " + y + " " + z);
  28. }
  29. }
  30. class input{
  31. public int input() {
  32.      int value = 0;
  33.      Scanner s = new Scanner(System.in);
  34.      value = s.nextInt();
  35.      return value;
  36. }
  37. }


16 输出9*9口诀。     

  1. public class lianxi16 {
  2. public static void main(String[] args) {
  3.      for(int i=1; i<10; i++) {
  4.       for(int j=1; j<=i; j++) {
  5.        System.out.print(j + "*" + i + "=" + j*i + "    " );
  6.          if(j*i<10){System.out.print(" ");}
  7. }
  8.           System.out.println();
  9.      }
  10. }
  11. }


17 猴子吃桃问题:猴子第一天摘下若干个桃子,当即吃了一半,还不瘾,又多吃了一个     第二天早上又将剩下的桃子吃掉一半,又多吃了一个。以后每天早上都吃了前一天剩下     的一半零一个。到第10天早上想再吃时,见只剩下一个桃子了。求第一天共摘了多少。   
 

  1. public class lianxi17 {
  2. public static void main(String[] args) {
  3.      int x = 1;
  4.      for(int i=2; i<=10; i++) {
  5.       x = (x+1)*2;
  6.      }
  7.      System.out.println("猴子第一天摘了 " + x + " 个桃子");
  8. }
  9. }

18 两个乒乓球队进行比赛,各出三人。甲队为a,b,c三人,乙队为x,y,z三人。已抽签决定比赛名单。有人向队员打听比赛的名单。a说他不和x比,c说他不和x,z比,请编程序找出三队赛手的名单。   
 

  1. public class lianxi18 {
  2. static char[] m = { 'a', 'b', 'c' };
  3. static char[] n = { 'x', 'y', 'z' };
  4. public static void main(String[] args) {
  5.    for (int i = 0; i < m.length; i++) {
  6.     for (int j = 0; j < n.length; j++) {
  7.      if (m[i] == 'a' && n[j] == 'x') {
  8.       continue;
  9. } else if (m[i] == 'a' && n[j] == 'y') {
  10.       continue;
  11.      } else if ((m[i] == 'c' && n[j] == 'x')
  12.        || (m[i] == 'c' && n[j] == 'z')) {
  13.       continue;
  14.      } else if ((m[i] == 'b' && n[j] == 'z')
  15.        || (m[i] == 'b' && n[j] == 'y')) {
  16.       continue;
  17.      } else
  18.       System.out.println(m[i] + " vs " + n[j]);
  19.     }
  20.    }
  21. }
  22. }

19 打印出如下图案(菱形)   
     *   
   ***   
 *****   
*******   
 *****   
   ***   
    *   

  1. public class lianxi19 {
  2. public static void main(String[] args) {
  3.     int H = 7, W = 7;//高和宽必须是相等的奇数
  4.     for(int i=0; i<(H+1) / 2; i++) {
  5.      for(int j=0; j<W/2-i; j++) {
  6.       System.out.print(" ");
  7.      }
  8.      for(int k=1; k<(i+1)*2; k++) {
  9.       System.out.print('*');
  10.      }
  11.      System.out.println();
  12.     }
  13.     for(int i=1; i<=H/2; i++) {
  14.      for(int j=1; j<=i; j++) {
  15.       System.out.print(" ");
  16.      }
  17.      for(int k=1; k<=W-2*i; k++) {
  18.       System.out.print('*');
  19.      }
  20.      System.out.println();
  21.     }
  22. }
  23. }

20 有一分数序列:2/1,3/2,5/3,8/5,13/8,21/13...求出这个数列的前20项之和。 

  1. public class lianxi20 {
  2. public static void main(String[] args) {
  3.     int x = 2, y = 1, t;
  4.     double sum = 0;
  5.     for(int i=1; i<=20; i++) {
  6.      sum = sum + (double)x / y;
  7.      t = y;
  8.      y = x;
  9.      x = y + t;
  10.      }
  11. System.out.println("前20项相加之和是: " + sum);
  12. }
  13. }

21 求1+2!+3!+...+20!的和   

  1. public class lianxi21 {
  2. public static void main(String[] args) {
  3.     long sum = 0;
  4.     long fac = 1;
  5.     for(int i=1; i<=20; i++) {
  6.      fac = fac * i;
  7.      sum += fac;
  8.     }
  9.     System.out.println(sum);
  10. }
  11. }

22 利用递归方法求5!。   

  1. public class lianxi22 {
  2. public static void main(String[] args) {
  3.        int n = 5;
  4.     rec fr = new rec();
  5.     System.out.println(n+"! = "+fr.rec(n));
  6. }
  7. }
  8. class rec{
  9. public long rec(int n) {
  10.     long value = 0 ;
  11.     if(n ==1 ) {
  12.      value = 1;
  13.     } else   {
  14.      value = n * rec(n-1);
  15.     }
  16.     return value;
  17. }
  18. }

23 有5个人坐在一起,问第五个人多少岁?他说比第4个人大2岁。问第4个人岁数,他说比第3个人大2岁。问第三个人,又说比第2人大两岁。问第2个人,说比第一个人大两岁。最后问第一个人,他说是10岁。请问第五个人多大?   

  1. public class lianxi23 {
  2. public static void main(String[] args) {
  3.     int age = 10;
  4.      for(int i=2; i<=5; i++) {
  5.      age =age+2;
  6.     }
  7.     System.out.println(age);
  8. }
  9. }

24 给一个不多于5位的正整数,要求:一、求它是几位数,二、逆序打印出各位数字。   

  1. //使用了长整型最多输入18位
  2. import java.util.*;
  3. public class lianxi24 {
  4. public static void main(String[] args) {
  5.    Scanner s = new Scanner(System.in);
  6.    System.out.print("请输入一个正整数:");
  7.    long a = s.nextLong();
  8.    String ss = Long.toString(a);
  9.     char[] ch = ss.toCharArray();
  10.     int j=ch.length;
  11.     System.out.println(a + "是一个"+ j +"位数。");
  12.     System.out.print("按逆序输出是:");
  13.     for(int i=j-1; i>=0; i--) {
  14.     System.out.print(ch[i]);
  15.    }
  16.    }
  17.    }


25 一个5位数,判断它是不是回文数。即12321是回文数,个位与万位相同,十位与千位相同。   

  1. import java.util.*;
  2. public class lianxi25 {
  3. public static void main(String[] args) {
  4.     Scanner s = new Scanner(System.in);
  5.     int a;
  6.     do{
  7.      System.out.print("请输入一个5位正整数:");
  8.       a = s.nextInt();
  9.       }while(a<10000||a>99999);
  10.      String ss =String.valueOf(a);
  11.      char[] ch = ss.toCharArray();
  12.      if(ch[0]==ch[4]&&ch[1]==ch[3]){
  13.      System.out.println("这是一个回文数");}
  14.      else {System.out.println("这不是一个回文数");}
  15.     }
  16.     }
  17. //这个更好,不限位数
  18. import java.util.*;
  19. public class lianxi25a {
  20. public static void main(String[] args) {
  21.    Scanner s = new Scanner(System.in);
  22.    boolean is =true;
  23.    System.out.print("请输入一个正整数:");
  24.    long a = s.nextLong();
  25.    String ss = Long.toString(a);
  26.    char[] ch = ss.toCharArray();
  27.    int j=ch.length;
  28.    for(int i=0; i<j/2; i++) {
  29.    if(ch[i]!=ch[j-i-1]){is=false;}
  30.    }
  31.    if(is==true){System.out.println("这是一个回文数");}
  32.      else {System.out.println("这不是一个回文数");}
  33.     }
  34.    }


26 请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续   判断第二个字母。   

  1. import java.util.*;
  2. public class lianxi26 {
  3. public static void main(String[] args) {
  4.     getChar tw = new getChar();
  5.     System.out.println("请输入星期的第一个大写字母:");
  6.     char ch = tw.getChar();
  7.     switch(ch) {
  8.      case 'M':
  9.       System.out.println("Monday");
  10.       break;
  11.      case 'W':
  12.       System.out.println("Wednesday");
  13.       break;
  14.      case 'F':
  15.       System.out.println("Friday");
  16.       break;
  17.      case 'T': {
  18.       System.out.println("请输入星期的第二个字母:");
  19.       char ch2 = tw.getChar();
  20.       if(ch2 == 'U') {System.out.println("Tuesday"); }
  21.       else if(ch2 == 'H') {System.out.println("Thursday"); }
  22.       else {System.out.println("无此写法!");
  23.        }
  24.      };
  25.       break;
  26.      case 'S': {
  27.        System.out.println("请输入星期的第二个字母:");
  28.       char ch2 = tw.getChar();
  29.       if(ch2 == 'U') {System.out.println("Sunday"); }
  30.        else if(ch2 == 'A') {System.out.println("Saturday"); }
  31.        else {System.out.println("无此写法!");
  32.        }
  33.      };
  34.       break;
  35. default:System.out.println("无此写法!");
  36. }
  37.    }
  38. }
  39. class getChar{
  40. public char getChar() {
  41.     Scanner s = new Scanner(System.in);
  42.     String str = s.nextLine();
  43.     char ch = str.charAt(0);
  44.     if(ch<'A' || ch>'Z') {
  45.      System.out.println("输入错误,请重新输入");
  46.      ch=getChar();
  47.     }
  48.     return ch;
  49. }
  50. }  


27 求100之内的素数   

  1. //使用除sqrt(n)的方法求出的素数不包括2和3
  2. public class lianxi27 {
  3. public static void main(String[] args) {
  4.     boolean b =false;
  5.     System.out.print(2 + " ");
  6.     System.out.print(3 + " ");
  7.     for(int i=3; i<100; i+=2) {
  8.      for(int j=2; j<=Math.sqrt(i); j++) {
  9.       if(i % j == 0) {b = false;
  10.                       break;
  11.        } else{b = true;}
  12.      }
  13.    if(b == true) {System.out.print(i + " ");}
  14.     }
  15.    }
  16. }
  17. //该程序使用除1位素数得2位方法,运行效率高通用性差。
  18. public class lianxi27a {
  19. public static void main(String[] args) {
  20.     int[] a = new int[]{2, 3, 5, 7};
  21.    for(int j=0; j<4; j++)System.out.print(a[j] + " ");
  22.     boolean b =false;
  23.     for(int i=11; i<100; i+=2) {
  24.      for(int j=0; j<4; j++) {
  25.       if(i % a[j] == 0) {b = false;
  26.                       break;
  27.        } else{b = true;}
  28.      }
  29.    if(b == true) {System.out.print(i + " ");}
  30.     }
  31.    }
  32. }


28 对10个数进行排序   

  1. import java.util.*;
  2. public class lianxi28 {
  3. public static void main(String[] args) {
  4. Scanner s = new Scanner(System.in);
  5.    int[] a = new int[10];
  6.    System.out.println("请输入10个整数:");
  7.    for(int i=0; i<10; i++) {
  8.     a[i] = s.nextInt();
  9.    }
  10.    for(int i=0; i<10; i++) {
  11.     for(int j=i+1; j<10; j++) {
  12.      if(a[i] > a[j]) {
  13.       int t = a[i];
  14.       a[i] = a[j];
  15.       a[j] = t;
  16.      }
  17.     }
  18.    }
  19.    for(int i=0; i<10; i++) {
  20.     System.out.print(a[i] + " ");
  21.    }
  22. }
  23. }


29 求一个3*3矩阵对角线元素之和     

  1. import java.util.*;
  2. public class lianxi29 {
  3. public static void main(String[] args) {
  4.    Scanner s = new Scanner(System.in);
  5.    int[][] a = new int[3][3];
  6. System.out.println("请输入9个整数:");
  7.    for(int i=0; i<3; i++) {
  8.     for(int j=0; j<3; j++) {
  9.      a[i][j] = s.nextInt();
  10.     }
  11.    }
  12.    System.out.println("输入的3 * 3 矩阵是:");
  13.    for(int i=0; i<3; i++) {
  14.     for(int j=0; j<3; j++) {
  15.      System.out.print(a[i][j] + " ");
  16.     }
  17.     System.out.println();
  18.    }
  19.    int sum = 0;
  20.    for(int i=0; i<3; i++) {
  21.     for(int j=0; j<3; j++) {
  22.      if(i == j) {
  23.       sum += a[i][j];
  24.      }
  25.     }
  26.    }
  27.    System.out.println("对角线之和是:" + sum);
  28. }
  29. }


30 有一个已经排好序的数组。现输入一个数,要求按原来的规律将它插入数组中。    

  1. //此程序不好,没有使用折半查找插入
  2. import java.util.*;
  3. public class lianxi30 {
  4. public static void main(String[] args) {
  5.    int[] a = new int[]{1, 2, 6, 14, 25, 36, 37,55};
  6.    int[] b = new int[a.length+1];
  7.    int t1 =0, t2 = 0;                                          
  8.    int i =0;
  9.    Scanner s= new Scanner(System.in);
  10.    System.out.print("请输入一个整数:");
  11.    int num = s.nextInt();
  12.    if(num >= a[a.length-1]) {
  13.     b[b.length-1] = num;
  14.     for(i=0; i<a.length; i++) {
  15.      b[i] = a[i];
  16.     }
  17.    } else {
  18.     for(i=0; i<a.length; i++) {
  19.      if(num >= a[i]) {
  20.       b[i] = a[i];
  21.      } else {    
  22.       b[i] = num;
  23.       break;
  24.      }
  25.     }
  26.     for(int j=i+1; j<b.length; j++) {
  27.      b[j] = a[j-1];
  28.     }
  29.    }
  30.    for (i = 0; i < b.length; i++) {
  31.     System.out.print(b[i] + " ");
  32.    }
  33. }                                      
  34. }


31 将一个数组逆序输出。   

  1. import java.util.*;
  2. public class lianxi31 {
  3. public static void main(String[] args) {
  4.    Scanner s = new Scanner(System.in);
  5.    int a[] = new int[20];
  6. System.out.println("请输入多个正整数(输入-1表示结束):");
  7.    int i=0,j;
  8.    do{
  9.       a[i]=s.nextInt();
  10.       i++;
  11.    }while (a[i-1]!=-1);
  12.    System.out.println("你输入的数组为:");
  13.    for( j=0; j<i-1; j++) {
  14.     System.out.print(a[j]+"   ");
  15. }
  16.    System.out.println("\n数组逆序输出为:");
  17.    for( j=i-2; j>=0; j=j-1) {
  18.     System.out.print(a[j]+"   ");
  19. }
  20.     }
  21.    }


32 取一个整数a从右端开始的4~7位。   

  1. import java.util.*;
  2. public class lianxi32 {
  3. public static void main(String[] args) {
  4.     Scanner s = new Scanner(System.in);
  5.     System.out.print("请输入一个7位以上的正整数:");
  6.     long a = s.nextLong();
  7.     String ss = Long.toString(a);
  8.     char[] ch = ss.toCharArray();
  9.     int j=ch.length;
  10.     if (j<7){System.out.println("输入错误!");}
  11.     else {
  12.      System.out.println("截取从右端开始的4~7位是:"+ch[j-7]+ch[j-6]+ch[j-5]+ch[j-4]);
  13.      }
  14.     }
  15.     }


33 打印出杨辉三角形(要求打印出10行如下图)      
            1   
          1    1   
        1    2    1   
      1    3    3    1   
    1    4    6    4    1   
1    5    10    10    5    1   
…………

  1. public class lianxi33 {
  2. public static void main(String[] args) {
  3.     int[][] a = new int[10][10];
  4.    for(int i=0; i<10; i++) {
  5.     a[i][i] = 1;
  6.     a[i][0] = 1;
  7.    }
  8.    for(int i=2; i<10; i++) {
  9.     for(int j=1; j<i; j++) {
  10.      a[i][j] = a[i-1][j-1] + a[i-1][j];
  11.     }
  12.    }
  13.      for(int i=0; i<10; i++) {
  14.     for(int k=0; k<2*(10-i)-1; k++) {
  15.      System.out.print(" ");
  16.     }
  17.     for(int j=0; j<=i; j++) {
  18.      System.out.print(a[i][j] + "   ");
  19.     }
  20.     System.out.println();
  21.    }
  22. }
  23. }


34 输入3个数a,b,c,按大小顺序输出。   

  1. import java.util.Scanner;
  2. public class lianxi34 {
  3. public static void main(String[] args) {
  4.     Scanner s = new Scanner(System.in);
  5.     System.out.println("请输入3个整数:");
  6.     int a = s.nextInt();
  7.     int b = s.nextInt();
  8.     int c = s.nextInt();
  9.       if(a < b) {
  10.      int t = a;
  11.      a = b;
  12.      b = t;
  13.     }
  14.       if(a < c) {
  15.      int t = a;
  16.      a = c;
  17.      c = t;
  18.     }
  19.      if(b < c) {
  20.      int t = b;
  21.      b = c;
  22.      c = t;
  23.     }
  24.     System.out.println("从大到小的顺序输出:");
  25.     System.out.println(a + " " + b + " " + c);
  26. }
  27. }


35 输入数组,最大的与第一个元素交换,最小的与最后一个元素交换,输出数组。   

  1. import java.util.*;
  2. public class lianxi35 {
  3. public static void main(String[] args) {
  4.    int N = 8;
  5.    int[] a = new int [N];
  6.    Scanner s = new Scanner(System.in);
  7.    int idx1 = 0, idx2 = 0;
  8.    System.out.println("请输入8个整数:");
  9.    for(int i=0; i<N; i++) {
  10.     a[i] = s.nextInt();
  11. }
  12.    System.out.println("你输入的数组为:");
  13.    for(int i=0; i<N; i++) {
  14.      System.out.print(a[i] + " ");
  15.    }
  16.    int max =a[0], min = a[0];
  17.    for(int i=0; i<N; i++) {
  18.     if(a[i] > max) {
  19.      max = a[i];
  20.      idx1 = i;
  21.     }
  22.     if(a[i] < min) {
  23.      min = a[i];
  24.      idx2 = i;
  25.     }
  26.    }
  27.    if(idx1 != 0) {
  28.     int temp = a[0];
  29.     a[0] = a[idx1];
  30.     a[idx1] = temp;
  31.    }
  32.     if(idx2 != N-1) {
  33.     int temp = a[N-1];
  34.     a[N-1] = a[idx2];
  35.     a[idx2] = temp;
  36.    }
  37.    System.out.println("\n交换后的数组为:");
  38.    for(int i=0; i<N; i++) {
  39.     System.out.print(a[i] + " ");
  40.    }
  41. }
  42. }


36 有n个整数,使其前面各数顺序向后移m个位置,最后m个数变成最前面的m个数   

  1. import java.util.Scanner;
  2. public class lianxi36 {
  3. public static void main(String[] args) {
  4.    int N =10;
  5.    int[] a = new int[N];
  6.    Scanner s = new Scanner(System.in);
  7.    System.out.println("请输入10个整数:");
  8.    for(int i=0; i<N; i++) {
  9.     a[i] = s.nextInt();
  10.    }
  11.    System.out.print("你输入的数组为:");
  12.    for(int i=0; i<N; i++) {
  13.      System.out.print(a[i] + " ");
  14.    }
  15.    System.out.print("\n请输入向后移动的位数:");
  16.    int m = s.nextInt();
  17.    int[] b = new int[m];
  18.    for(int i=0; i<m; i++) {
  19.     b[i] = a[N-m+i];
  20.    }
  21.    for(int i=N-1; i>=m; i--) {
  22.    a[i] = a[i-m];
  23.    }
  24.    for(int i=0; i<m; i++) {
  25.     a[i] = b[i];
  26.    }
  27. System.out.print("位移后的数组是:");
  28.    for(int i=0; i<N; i++) {
  29.     System.out.print(a[i] + " ");
  30.    }
  31. }
  32. }


37 有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子,问最后留下的是原来第几号的那位。   

  1. import java.util.Scanner;
  2. public class lianxi37 {
  3. public static void main(String[] args) {
  4.    Scanner s = new Scanner(System.in);
  5.    System.out.print("请输入排成一圈的人数:");
  6.    int n = s.nextInt();
  7.    boolean[] arr = new boolean[n];
  8.    for(int i=0; i<arr.length; i++) {
  9.     arr[i] = true;
  10.    }
  11.    int leftCount = n;
  12.    int countNum = 0;
  13.    int index = 0;
  14.    while(leftCount > 1) {
  15.     if(arr[index] == true) {
  16.      countNum ++;
  17.      if(countNum == 3) {
  18.       countNum =0;
  19.       arr[index] = false;
  20.       leftCount --;
  21.      }
  22.     }
  23.      index ++;
  24.      if(index == n) {
  25.      index = 0;
  26.     }
  27.    }
  28.     for(int i=0; i<n; i++) {
  29.     if(arr[i] == true) {
  30.      System.out.println("原排在第"+(i+1)+"位的人留下了。");
  31.     }
  32.    }
  33. }
  34. }


38 写一个函数,求一个字符串的长度,在main函数中输入字符串,并输出其长度。   

  1. /*………………
  2. *……题目意思似乎不能用length()函数     */
  3. import java.util.*;
  4. public class lianxi38 {
  5. public static void main(String[] args) {
  6.     Scanner s = new Scanner(System.in);
  7.     System.out.println("请输入一个字符串:");
  8.     String str = s.nextLine();
  9.      System.out.println("字符串的长度是:"+str.length());
  10.     }
  11.     }


39 编写一个函数,输入n为偶数时,调用函数求1/2+1/4+...+1/n,当输入n为奇数时,调用函数1/1+1/3+...+1/n(利用指针函数)   

  1. //没有利用指针函数
  2. import java.util.*;
  3. public class lianxi39 {
  4. public static void main(String[] args) {
  5.     Scanner s = new Scanner(System.in);
  6.     System.out.print("请输入一个正整数 n= ");
  7.     int n = s.nextInt();
  8.     System.out.println("相应数列的和为:" + sum(n));
  9.    }
  10. public static double sum(int n) {
  11.     double res = 0;
  12.     if(n % 2 == 0) {
  13.      for(int i=2; i<=n; i+=2) {
  14.       res += (double)1 / i;
  15.      }
  16.     } else {
  17.      for(int i=1; i<=n; i+=2) {
  18.       res += (double)1 / i ;
  19.      }
  20.     }
  21.     return res;
  22. }
  23. }


40 字符串排序。   

  1. public class lianxi40 {
  2. public static void main(String[] args) {
  3.    int N=5;
  4.    String temp = null;
  5.    String[] s = new String[N];
  6.    s[0] = "matter";
  7.    s[1] = "state";
  8.    s[2] = "solid";
  9.    s[3] = "liquid";
  10.    s[4] = "gas";
  11.    for(int i=0; i<N; i++) {
  12.     for(int j=i+1; j<N; j++) {
  13.      if(compare(s[i], s[j]) == false) {
  14.       temp = s[i];
  15.       s[i] = s[j];
  16.       s[j] = temp;
  17.      }
  18.     }
  19.    }
  20.     for(int i=0; i<N; i++) {
  21.     System.out.println(s[i]);
  22.    }
  23. }
  24. static boolean compare(String s1, String s2) {
  25.    boolean result = true;
  26.    for(int i=0; i<s1.length() && i<s2.length(); i++) {
  27.     if(s1.charAt(i) > s2.charAt(i)) {
  28.      result = false;
  29.      break;
  30.     } else if(s1.charAt(i) <s2.charAt(i)) {
  31.      result = true;
  32.      break;
  33.     } else {
  34.      if(s1.length() < s2.length()) {
  35.       result = true;
  36.      } else {
  37.       result = false;
  38.      }
  39.     }
  40.    }
  41.    return result;
  42. }
  43. }


41 海滩上有一堆桃子,五只猴子来分。第一只猴子把这堆桃子凭据分为五份,多了一个,这只猴子把多的一个扔入海中,拿走了一份。第二只猴子把剩下的桃子又平均分成五份,又多了一个,它同样把多的一个扔入海中,拿走了一份,第三、第四、第五只猴子都是这样做的,问海滩上原来最少有多少个桃子?   

  1. public class lianxi41 {
  2. public static void main (String[] args) {
  3. int i,m,j=0,k,count;
  4. for(i=4;i<10000;i+=4)
  5.    { count=0;
  6.      m=i;
  7.      for(k=0;k<5;k++)
  8.         {
  9.          j=i/4*5+1;
  10.          i=j;
  11.          if(j%4==0)
  12.             count++;
  13.             else break;
  14.        }
  15.     i=m;
  16. if(count==4)
  17. {System.out.println("原有桃子 "+j+" 个");
  18. break;}
  19. }
  20. }
  21. }


42 809*??=800*??+9*??+1    其中??代表的两位数,8*??的结果为两位数,9*??的结果为3位数。求??代表的两位数,及809*??后的结果。   
 

  1. //题目错了!809x=800x+9x+1 这样的方程无解。去掉那个1就有解了。
  2. public class lianxi42 {
  3. public static void main (String[] args) {
  4. int a=809,b,i;
  5. for(i=10;i<13;i++)
  6. {b=i*a ;
  7. if(8*i<100&&9*i>=100)
  8. System.out.println ("809*"+i+"="+"800*"+i+"+"+"9*"+i+"="+b);}
  9. }
  10. }


43 求0—7所能组成的奇数个数。   
 

  1. //组成1位数是4个。
  2. //组成2位数是7*4个。
  3. //组成3位数是7*8*4个。
  4. //组成4位数是7*8*8*4个。
  5. //......
  6. public class lianxi43 {
  7. public static void main (String[] args) {
  8. int sum=4;
  9. int j;
  10. System.out.println("组成1位数是 "+sum+" 个");
  11. sum=sum*7;
  12. System.out.println("组成2位数是 "+sum+" 个");
  13. for(j=3;j<=9;j++){
  14. sum=sum*8;
  15. System.out.println("组成"+j+"位数是 "+sum+" 个");
  16. }
  17. }
  18. }


44 一个偶数总能表示为两个素数之和。   
 

  1. //由于用除sqrt(n)的方法求出的素数不包括2和3,
  2. //因此在判断是否是素数程序中人为添加了一个3。
  3. import java.util.*;
  4. public class lianxi44 {
  5. public static void main(String[] args) {
  6. Scanner s = new Scanner(System.in);
  7. int n,i;
  8. do{
  9.      System.out.print("请输入一个大于等于6的偶数:");
  10.      n = s.nextInt();
  11.     } while(n<6||n%2!=0);   //判断输入是否是>=6偶数,不是,重新输入
  12. fun fc = new fun();
  13.     for(i=2;i<=n/2;i++){
  14.     if((fc.fun(i))==1&&(fc.fun(n-i)==1))
  15.     {int j=n-i;
  16.      System.out.println(n+" = "+i+" + "+j);
  17.      } //输出所有可能的素数对
  18.    }
  19. }
  20. }
  21. class fun{
  22. public int fun (int a)    //判断是否是素数的函数
  23. {
  24. int i,flag=0;
  25. if(a==3){flag=1;return(flag);}
  26. for(i=2;i<=Math.sqrt(a);i++){
  27.    if(a%i==0) {flag=0;break;}
  28.       else flag=1;}
  29. return (flag) ;//不是素数,返回0,是素数,返回1
  30. }
  31. }


//解法二

  1. import java.util.*;
  2. public class lianxi44 {
  3. public static void main(String[] args) {
  4. Scanner s = new Scanner(System.in);
  5. int n;
  6. do{
  7.      System.out.print("请输入一个大于等于6的偶数:");
  8.      n = s.nextInt();
  9.     } while(n<6||n%2!=0);   //判断输入是否是>=6偶数,不是,重新输入
  10.     for(int i=3;i<=n/2;i+=2){
  11.     if(fun(i)&&fun(n-i)) {
  12.       System.out.println(n+" = "+i+" + "+(n-i));
  13.       } //输出所有可能的素数对
  14.    }
  15. }
  16. static boolean fun (int a){    //判断是否是素数的函数
  17. boolean flag=false;
  18. if(a==3){flag=true;return(flag);}
  19. for(int i=2;i<=Math.sqrt(a);i++){
  20.    if(a%i==0) {flag=false;break;}
  21.       else flag=true;}
  22. return (flag) ;
  23. }
  24. }


45 判断一个素数能被几个9整除   
 

  1. //题目错了吧?能被9整除的就不是素数了!所以改成整数了。
  2. import java.util.*;
  3. public class lianxi45 {
  4. public static void main (String[] args) {
  5.    Scanner s = new Scanner(System.in);
  6.    System.out.print("请输入一个整数:");
  7.     int num = s.nextInt();
  8.     int   tmp = num;
  9.     int count = 0;
  10.        for(int i = 0 ; tmp%9 == 0 ;){
  11.            tmp = tmp/9;
  12.             count ++;
  13.           }
  14.      System.out.println(num+" 能够被 "+count+" 个9整除。");
  15.      }
  16. }


46 两个字符串连接程序   

  1. import java.util.*;
  2. public class lianxi46 {
  3. public static void main(String[] args) {
  4.     Scanner s = new Scanner(System.in);
  5.     System.out.print("请输入一个字符串:");
  6.     String str1 = s.nextLine();
  7.     System.out.print("请再输入一个字符串:");
  8.     String str2 = s.nextLine();
  9.     String str = str1+str2;
  10.     System.out.println("连接后的字符串是:"+str);
  11.     }
  12.     }


47 读取7个数(1—50)的整数值,每读取一个值,程序打印出该值个数的*。   

  1. import java.util.*;
  2. public class lianxi47 {
  3. public static void main(String[] args) {
  4. Scanner s = new Scanner(System.in);
  5. int n=1,num;
  6. while(n<=7){
  7.          do{
  8.           System.out.print("请输入一个1--50之间的整数:");
  9.              num= s.nextInt();
  10.            }while(num<1||num>50);
  11.       for(int i=1;i<=num;i++)
  12.       {System.out.print("*");
  13.       }
  14. System.out.println();
  15. n ++;
  16. }
  17. }
  18. }


48 某个公司采用公用电话传递数据,数据是四位的整数,在传递过程中是加密的,加密规则如下:每位数字都加上5,然后用和除以10的余数代替该数字,再将第一位和第四位交换,第二位和第三位交换。   

  1. import java.util.*;
  2. public class lianxi48   {
  3. public static void main(String args[]) {
  4. Scanner s = new Scanner(System.in);
  5. int num=0,temp;
  6. do{
  7.    System.out.print("请输入一个4位正整数:");
  8.       num = s.nextInt();
  9.      }while (num<1000||num>9999);
  10. int a[]=new int[4];
  11. a[0] = num/1000; //取千位的数字
  12. a[1] = (num/100)%10; //取百位的数字
  13. a[2] = (num/10)%10; //取十位的数字
  14. a[3] = num%10; //取个位的数字
  15. for(int j=0;j<4;j++)
  16. {
  17. a[j]+=5;
  18. a[j]%=10;
  19. }
  20. for(int j=0;j<=1;j++)
  21.     {
  22.     temp = a[j];
  23.     a[j] = a[3-j];
  24.     a[3-j] =temp;
  25.     }
  26. System.out.print("加密后的数字为:");
  27. for(int j=0;j<4;j++)
  28. System.out.print(a[j]);
  29. }
  30. }


49 计算字符串中子串出现的次数   
 

  1. import java.util.*;
  2. public class lianxi49 {
  3. public static void main(String args[]){
  4. Scanner s = new Scanner(System.in);
  5.     System.out.print("请输入字符串:");
  6.     String str1 = s.nextLine();
  7.     System.out.print("请输入子串:");
  8.     String str2 = s.nextLine();
  9. int count=0;
  10. if(str1.equals("")||str2.equals(""))
  11.    {
  12.    System.out.println("你没有输入字符串或子串,无法比较!");
  13.    System.exit(0);
  14.    }
  15. else
  16.    {
  17.     for(int i=0;i<=str1.length()-str2.length();i++)
  18.      {
  19.      if(str2.equals(str1.substring(i, str2.length()+i)))
  20.       //这种比法有问题,会把"aaa"看成有2个"aa"子串。
  21.        count++;
  22.        }
  23. System.out.println("子串在字符串中出现: "+count+" 次");
  24. }
  25. }
  26. }


50 有五个学生,每个学生有3门课的成绩,从键盘输入以上数据(包括学生号,姓名,三门课成绩),计算出平均成绩,把原有的数据和计算出的平均分数存放在磁盘文件 "stud "中。

  1. import java.io.*;
  2. import java.util.*;
  3. public class lianxi50 {
  4. public static void main(String[] args){
  5.    Scanner ss = new Scanner(System.in);
  6.    String [][] a = new String[5][6];
  7.    for(int i=1; i<6; i++) {
  8.     System.out.print("请输入第"+i+"个学生的学号:");
  9.     a[i-1][0] = ss.nextLine();
  10.     System.out.print("请输入第"+i+"个学生的姓名:");
  11.     a[i-1][1] = ss.nextLine();
  12.     for(int j=1; j<4; j++) {
  13.        System.out.print("请输入该学生的第"+j+"个成绩:");
  14.        a[i-1][j+1] = ss.nextLine();
  15.        }
  16. System.out.println("\n");
  17.    }
  18. //以下计算平均分
  19. float avg;
  20. int sum;
  21. for(int i=0; i<5; i++) {
  22. sum=0;
  23.    for(int j=2; j<5; j++) {
  24.    sum=sum+ Integer.parseInt(a[i][j]);
  25.       }
  26.    avg= (float)sum/3;
  27.    a[i][5]=String.valueOf(avg);
  28. }
  29. //以下写磁盘文件
  30. String s1;
  31. try {
  32.     File f = new File("C:\\stud");
  33.     if(f.exists()){
  34.       System.out.println("文件存在");
  35.       }else{
  36.          System.out.println("文件不存在,正在创建文件");
  37.           f.createNewFile();//不存在则创建
  38.         }
  39. BufferedWriter output = new BufferedWriter(new FileWriter(f));
  40. for(int i=0; i<5; i++) {
  41. for(int j=0; j<6; j++) {
  42.    s1=a[i][j]+"\r\n";
  43.    output.write(s1);   
  44.     }
  45. }
  46. output.close();
  47. System.out.println("数据已写入c盘文件stud中!");
  48.    } catch (Exception e) {
  49.      e.printStackTrace();
  50.      }
  51. }
  52. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/452042
推荐阅读
相关标签
  

闽ICP备14008679号