System.out.println(three=one+two);
System.out.println(three+=one);
System.out.println(three-=one);
System.out.println(three*=one);
System.out.println(three/=one);
System.out.println(three%=one);
System.out.println(three+=one);
System.out.println(three-=one);
System.out.println(three*=one);
System.out.println(three/=one);
System.out.println(three%=one);
2015-01-12
大家注意 java中的字符串比较不能用==,字符串用==只是比较两个对象是否存储在同一个位置,如果设了两个String对象内容一样,很可能不相等,各位可以把str2改成hello试试
应该使用str1.equals(str2)
应该使用str1.equals(str2)
2015-01-12