public class HelloWorld {
	public static void main(String[] args) {
		System.out.println("我在编程中国学JAVA");
		System.out.println();
		System.out.println("abc"=="ab"+"c");
		String s="      asfjhajsdhjsdgajgjnbdjd   ";
		String[] sp2=s.split("a");//返回的是副本是字符串数组
	//	String sp=s.split('a');//返回的是副本
		String st=s.trim();
		System.out.println(s+"________________"+st);
		System.out.println(sp2);//[Ljava.lang.String;@2f2c9b19
		String ss=s.substring(22);//
		System.out.println(s+"---------------");
		System.out.println(ss);//gjnbdjd
		for (int i=0;i<sp2.length ;i++ ) {
		    System.out.println(sp2[i]);
		}
		// 练习一下循环的使用
		for (int i=1; i<=20; i++) {
			System.out.printf("我爱编程中国 %d 次\n", i);
		}
		
		System.out.printf("\n\n编程中国送我一颗小心心:");
		// 绘制一个心形图案
		float x, y;
		for (y = (float)1.5; y > -1.5; y -= 0.1) {
			for (x = (float)-1.5; x < 1.5; x += 0.05) {
				float a = x * x + y * y - 1;
				if ((a * a * a - x * x * y * y * y) <= 0.0) {
					System.out.print("*");
				} else {
					System.out.print(" ");
				}
			}
			System.out.println();
		}
		StringBuffer sb = new StringBuffer();
sb.append("qq").append("ww");
show(sb,"ss");
System.out.println(sb.length());

	}
	static void show(StringBuffer sb,String str){
	  sb.append(str);
	}
}