摘要: 目录 1、窗体(Form) 2、Label (标签)控件 3、TextBox(文本框)控件 4、RichTextBox控件 5、NumericUpDown控件 6、Button(按钮)控件 7、GroupBox(分组框)控件 8、RadioButton(单选按钮)控件 9、CheckBox(复选框) 阅读全文
posted @ 2019-01-09 21:53 !!天道酬勤 阅读(5979) 评论(0) 推荐(1) 编辑
摘要: import java.util.Arrays; public class testselectsort { public static void main(String[] args) { int[] arr = { 1999, 8, 15, 999999 ,89,56,3245}; select 阅读全文
posted @ 2019-01-09 19:17 !!天道酬勤 阅读(137) 评论(0) 推荐(0) 编辑
摘要: import java.util.Arrays; public class testQuicksort { public static void main(String[] args) { int[] arr = { 12, 35, 56, 678, 2322, 561 }; quickSort(a 阅读全文
posted @ 2019-01-09 19:13 !!天道酬勤 阅读(101) 评论(0) 推荐(0) 编辑