摘要: public static void main(String[] args) { //String String str = "字符串常量字符串常量"; String str1 = new String("字符串常量"); //构造方法 String str2 = new String("字符串常量 阅读全文
posted @ 2016-02-29 23:21 庚xiao午 阅读(735) 评论(0) 推荐(0) 编辑
摘要: 1 package com.hanqi; 2 public class BubbleSort 3 { 4 public static void main(String[] args) 5 { 6 //冒泡排序 7 int[]a=new int [] {11,23,9,34,89,70,39,21,1 阅读全文
posted @ 2016-02-29 23:02 庚xiao午 阅读(253) 评论(0) 推荐(0) 编辑