上一页 1 ··· 6 7 8 9 10 11 12 13 下一页
摘要: 1 #include 2 3 // 直接插入排序 4 void insert_sort(int sz[], int len) 5 { 6 for (int i = 2; i sz[0]; j--) 15 { 16 sz[j + 1] = sz[j]; 17 } 18 ... 阅读全文
posted @ 2019-04-19 19:39 sqdtss 阅读(233) 评论(0) 推荐(0)
摘要: There is no doubt that gardens evidence an irrepressible urge to create, express, fashion, and beautify and that self-expression is a basic human urge 阅读全文
posted @ 2019-04-15 21:32 sqdtss 阅读(213) 评论(0) 推荐(0)
摘要: Calls to disassemble all telescopes on Mauna Kea or to ban future development there ignore the reality that astronmy and Hawiian culture both seek to 阅读全文
posted @ 2019-04-15 21:23 sqdtss 阅读(102) 评论(0) 推荐(0)
摘要: Futhermore, humans have the ablity to modify the environment in which they live, thus subjecting all other life to their own peculiar ideas and fancie 阅读全文
posted @ 2019-04-14 20:16 sqdtss 阅读(120) 评论(0) 推荐(0)
摘要: You never know how strong you are until being strong is the only choice you have. 阅读全文
posted @ 2019-04-12 22:48 sqdtss 阅读(65) 评论(0) 推荐(0)
摘要: The hardest task that computer asks of anyone is to turn the power off after he has turned it on. 阅读全文
posted @ 2019-04-12 22:47 sqdtss 阅读(202) 评论(0) 推荐(0)
摘要: 首先确认office目录下存在“ospp.vbs”文件,可以搜索确认文件路径。 我的是在C:\Program Files\Microsoft Office\Office16 首先确认office目录下存在“ospp.vbs”文件,可以搜索确认文件路径。 我的是在C:\Program Files\Mi 阅读全文
posted @ 2019-01-10 20:53 sqdtss 阅读(1093) 评论(0) 推荐(0)
摘要: 首先下载MyBatis jar包, 可以去MyBatis中文官网下载 项目中导入MyBatis jar包和JDBC jar包(此处用的MySQL) 新建conf.xml 内容如下: 配置好后写个Student类测试: 1 public class Student { 2 int id; 3 Stri 阅读全文
posted @ 2018-12-10 20:36 sqdtss 阅读(93) 评论(0) 推荐(0)
摘要: 先下载、导入核心jar包 编写Book类和CollectionUse类 1 package MyPackageOne; 2 3 public class Book { 4 private String title; 5 private double price; 6 7 public Book() 阅读全文
posted @ 2018-11-05 20:07 sqdtss 阅读(105) 评论(0) 推荐(0)
摘要: 首先需要去MySQL官网下载MySQL JDBC驱动 导入jar包 删除也用executeUpdate()即可。 阅读全文
posted @ 2018-11-03 17:57 sqdtss 阅读(148) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 12 13 下一页