上一页 1 ··· 138 139 140 141 142 143 144 145 146 ··· 156 下一页
摘要: 数据库设计一、设计步骤 1.收集信息(来源项目需求分析) 2.标识实体(一般是需求分析中需要管理的信息名词) 3.标识每个实体的属性 4.实体之间的关系二、画e-r图(实体关系图) 1.矩形表示实体 2.椭圆表示... 阅读全文
posted @ 2016-11-05 18:32 穆雄雄 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static... 阅读全文
posted @ 2016-11-04 23:24 穆雄雄 阅读(86) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static void main(String[] args) { int rows = 0;... 阅读全文
posted @ 2016-11-04 23:23 穆雄雄 阅读(443) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static... 阅读全文
posted @ 2016-11-04 23:23 穆雄雄 阅读(176) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) {... 阅读全文
posted @ 2016-11-04 23:22 穆雄雄 阅读(82) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) { int way = 1; //买法 int k = 0; //雏鸡数 for... 阅读全文
posted @ 2016-11-04 23:21 穆雄雄 阅读(416) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) {... 阅读全文
posted @ 2016-11-04 23:21 穆雄雄 阅读(78) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;/** * 打印九九乘法表 */public class MulTable { public static void main(String[] args)... 阅读全文
posted @ 2016-11-04 23:18 穆雄雄 阅读(106) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;/** * 打印九九乘法表 */public class MulTable { public static void main(String[] args) { int rows = 9; //乘法表的行数 for(int i... 阅读全文
posted @ 2016-11-04 23:17 穆雄雄 阅读(416) 评论(0) 推荐(0) 编辑
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印等腰三角形 */public class IsoTriangle { public static void main(String[] args) { int ro... 阅读全文
posted @ 2016-11-04 23:17 穆雄雄 阅读(1384) 评论(0) 推荐(0) 编辑
上一页 1 ··· 138 139 140 141 142 143 144 145 146 ··· 156 下一页