上一页 1 ··· 138 139 140 141 142 143 144 145 146 ··· 156 下一页
摘要: 一、事务: 1.概念:是单个逻辑单元执行的一系列操作(一个事务中有多个sql语句),这个操作作为一个整体一起提交,要么执行,要么都不执行,多个事务操作是一个不可分割的逻辑单元。 2.事务的特性: (1)原子性(A... 阅读全文
posted @ 2016-11-05 18:32 穆雄雄 阅读(69) 评论(0) 推荐(0)
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static... 阅读全文
posted @ 2016-11-04 23:24 穆雄雄 阅读(98) 评论(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 穆雄雄 阅读(458) 评论(0) 推荐(0)
摘要: package cn.jbit.nestedloops;import java.util.Scanner;/** * 输入行数打印菱形 */public class Diamond { public static... 阅读全文
posted @ 2016-11-04 23:23 穆雄雄 阅读(182) 评论(0) 推荐(0)
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) {... 阅读全文
posted @ 2016-11-04 23:22 穆雄雄 阅读(88) 评论(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 穆雄雄 阅读(420) 评论(0) 推荐(0)
摘要: package cn.jbit.nestedloops;public class Chook { /** * 百钱买百鸡 */ public static void main(String[] args) {... 阅读全文
posted @ 2016-11-04 23:21 穆雄雄 阅读(88) 评论(0) 推荐(0)
摘要: package cn.jbit.nestedloops;/** * 打印九九乘法表 */public class MulTable { public static void main(String[] args)... 阅读全文
posted @ 2016-11-04 23:18 穆雄雄 阅读(110) 评论(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 穆雄雄 阅读(425) 评论(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 穆雄雄 阅读(1403) 评论(0) 推荐(0)
上一页 1 ··· 138 139 140 141 142 143 144 145 146 ··· 156 下一页