摘要: //裴波那契数列的定义:他的第一项和第二项均为1,以后各项都为前两项的和。如: 1,1,2,3,5,8,13,21,34,55,89,144,233,~~~~ 关键代码如下: package fuxi;import java.util.Scanner;public class Pbo { publi 阅读全文
posted @ 2018-11-26 14:59 one_brightest_star 阅读(1017) 评论(0) 推荐(0) 编辑
摘要: //冒泡排序法: package fuxi;public class Bubble { public static void main(String[] args) { int a[] = { 10,23,11,56,45,26,59,28,84,79 }; int i,temp; System.o 阅读全文
posted @ 2018-11-26 14:02 one_brightest_star 阅读(561) 评论(0) 推荐(0) 编辑
摘要: package fuxi;public class Diamond { public static void main(String[] args) { printHollowRhombus(4); } private static void printHollowRhombus(int size) 阅读全文
posted @ 2018-11-26 10:49 one_brightest_star 阅读(1135) 评论(0) 推荐(0) 编辑