收藏 分享(赏)

JAVA编程题全集new.docx

上传人:dreamzhangning 文档编号:2261395 上传时间:2018-09-08 格式:DOCX 页数:65 大小:29.68KB
下载 相关 举报
JAVA编程题全集new.docx_第1页
第1页 / 共65页
JAVA编程题全集new.docx_第2页
第2页 / 共65页
JAVA编程题全集new.docx_第3页
第3页 / 共65页
JAVA编程题全集new.docx_第4页
第4页 / 共65页
JAVA编程题全集new.docx_第5页
第5页 / 共65页
点击查看更多>>
资源描述

1、【程序 1】 题目:古典问题:有一对兔子,从出生后第 3 个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? /这是一个菲波拉契数列问题public class lianxi01 public static void main(String args) System.out.println(“第 1 个月的兔子对数: 1“);System.out.println(“第 2 个月的兔子对数: 1“);int f1 = 1, f2 = 1, f, M=24;for(int i=3; i k,但 n 能被 k 整除,则应打印出 k 的值,并用

2、 n 除以 k 的商,作为新的正整数你 n,重复执行第一步。 (3)如果 n 不能被 k 整除,则用 k+1 作为 k 的值,重复执行第一步。 import java.util.*;public class lianxi04 public static void main(String args) Scanner s = new Scanner(System.in);System.out.print( “请键入一个正整数: “); int n = s.nextInt();int k=2; System.out.print(n + “=“ );while(k =90分的同学用 A 表示,60-8

3、9 分之间的用 B 表示,60 分以下的用 C 表示。 import java.util.*;public class lianxi05 public static void main(String args) int x;char grade;Scanner s = new Scanner(System.in);System.out.print( “请输入一个成绩: “); x = s.nextInt(); grade = x = 90 ? A: x = 60 ? B:C;System.out.println(“等级为:“+grade); 【程序 6】 题目:输入两个正整数 m 和 n,求其

4、最大公约数和最小公倍数。 /*在循环中,只要除数不等于 0,用较大数除以较小的数,将小的一个数作为下一轮循环的大数,取得的余数作为下一轮循环的较小的数,如此循环直到较小的数的值为 0,返回较大的数,此数即为最大公约数,最小公倍数为两数之积除以最大公约数。* /import java.util.*;public class lianxi06 public static void main(String args) int a ,b,m;Scanner s = new Scanner(System.in);System.out.print( “键入一个整数: “); a = s.nextInt()

5、;System.out.print( “再键入一个整数: “); b = s.nextInt();deff cd = new deff();m = cd.deff(a,b);int n = a * b / m;System.out.println(“最大公约数: “ + m);System.out.println(“最小公倍数: “ + n); class deffpublic int deff(int x, int y) int t;if(x = 0 System.out.println(“应该提取的奖金是 “ + y + “万“);【程序 13】 题目:一个整数,它加上 100 后是一个完

6、全平方数,再加上 168 又是一个完全平方数,请问该数是多少? public class lianxi13 public static void main(String args) for(int x =1; x 12 | day 31) System.out.println(“输入错误,请重新输入!“);e=1 ; while( e=1);for (int i=1; i y) int t = x;x = y;y = t;if(x z) int t = x;x = z;z = t;if(y z) int t = y;y = z;z = t;System.out.println( “三个数字由小

7、到大排列为: “+x + “ “ + y + “ “ + z);class inputpublic int input() int value = 0;Scanner s = new Scanner(System.in);value = s.nextInt();return value; 【程序 16】题目:输出 9*9 口诀。 public class lianxi16 public static void main(String args) for(int i=1; i=0; i-) System.out.print(chi);【程序 25】 题目:一个 5 位数,判断它是不是回文数。即

8、12321 是回文数,个位与万位相同,十位与千位相同。 import java.util.*;public class lianxi25 public static void main(String args) Scanner s = new Scanner(System.in);int a;doSystem.out.print(“请输入一个 5 位正整数:“);a = s.nextInt();while(a99999);String ss =String.valueOf(a);char ch = ss.toCharArray();if(ch0=ch4else System.out.print

9、ln(“这不是一个回文数“);/这个更好,不限位数import java.util.*;public class lianxi25a public static void main(String args) Scanner s = new Scanner(System.in);boolean is =true;System.out.print(“请输入一个正整数:“);long a = s.nextLong();String ss = Long.toString(a);char ch = ss.toCharArray();int j=ch.length;for(int i=0; ij/2; i

10、+) if(chi!=chj-i-1)is=false;if(is=true)System.out.println(“这是一个回文数“);else System.out.println(“这不是一个回文数“);【程序 26】 题目:请输入星期几的第一个字母来判断一下是星期几,如果第一个字母一样,则继续 判断第二个字母。 import java.util.*;public class lianxi26 public static void main(String args) getChar tw = new getChar();System.out.println(“请输入星期的第一个大写字母:

11、“);char ch = tw.getChar();switch(ch) case M: System.out.println(“Monday“);break;case W: System.out.println(“Wednesday“);break;case F:System.out.println(“Friday“);break;case T: System.out.println(“请输入星期的第二个字母:“);char ch2 = tw.getChar();if(ch2 = U) System.out.println(“Tuesday“); else if(ch2 = H) Syste

12、m.out.println(“Thursday“); else System.out.println(“无此写法!“); break;case S: System.out.println(“请输入星期的第二个字母:“);char ch2 = tw.getChar();if(ch2 = U) System.out.println(“Sunday“); else if(ch2 = A) System.out.println(“Saturday“); else System.out.println(“无此写法!“);break;default:System.out.println(“无此写法!“);

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 高等教育 > 大学课件

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报