1 【程序1】 题目:古典问题:有一对兔子,从出生后第3个月起每个月都生一对兔子,小兔子长到第三个月后每个月又生一对兔子,假如兔子都不死,问每个月的兔子总数为多少? 1.程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21.... import java.util.Scanner; public class RabbitsQuit { /** * 【程序1】 题目:古典问题:有一对兔子,从出生后第3个月 起每个月都生一对兔子,小兔子长到第三个月后每个月又生 一 * 对兔子,假如兔子都不死,问每个月的兔子总数为多少? 1.程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21.... */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); RabbitsQuit rq = new RabbitsQuit(); System.out.println("请输入一个整数:"); int n = sc.nextInt(); for (int i = 0; i < n; i++) { System.out.println("第" + (i + 1) + "个月:" + rq.calc(i + 1)); } } private int calc(int x) { if (x == 1 || x == 2) return 1; else return calc(x - 2) + calc(x - 1); } } 【程序2】 题目:判断101-200之间有多少个素数,并输出所有素数。 1.程序分析:判断素数的方法:用一个数分别去除2到sqrt(这个数),如果能被整除, 则表明此数不是素数,反之是素数。 import java.util.Scanner; public class RabbitsQuit { 2 /** * 【程序1】 题目:古典问题:有一对兔子,从出生后第3个月 起每个月都生一对兔子,小兔子长到第三个月后每个月又生 一 * 对兔子,假如兔子都不死,问每个月的兔子总数为多少? 1.程序分析: 兔子的规律为数列1,1,2,3,5,8,13,21.... */ public static void main(String[] args) { // TODO Auto-generated method stub Scanner sc = new Scanner(System.in); RabbitsQuit rq = new RabbitsQuit(); System.out.println("请输入一个整数:"); int n = sc.nextInt(); for (int i = 0; i < n; i++) { System.out.println("第" + (i + 1) + "个月:" + rq.calc(i + 1)); } } private int calc(int x) { if (x == 1 || x == 2) return 1; else return calc(x - 2) + calc(x - 1); } } 法二: import java.util.Vector; public clas...