之前是搞PHP开发的业余时间看JAVA,当初自学PHP的时候总是眼高收地的以为啥都会一动手错误一大堆,慕课堂很好的解决了这个问题。程序光看是写不出来的。不得不佩服同行做的网站就是厉害啊。赞一个。UI也很不错。
2015-01-09
System.out.println("a等于b:" +(a==b));
System.out.println("a大于b:" + (a>b));
System.out.println("a小于等于b:" + (a<=b));
System.out.println("str1等于str2:" + (str1==str2));
}
}
System.out.println("a大于b:" + (a>b));
System.out.println("a小于等于b:" + (a<=b));
System.out.println("str1等于str2:" + (str1==str2));
}
}
2015-01-08
多练手
public class HelloWorld{
public static void main(String[] args){
String strOne="我爱慕课网";
String strTwo="www.imooc.com";
System.out.println(strOne);
System.out.println(strTwo);
}
}
public class HelloWorld{
public static void main(String[] args){
String strOne="我爱慕课网";
String strTwo="www.imooc.com";
System.out.println(strOne);
System.out.println(strTwo);
}
}
2015-01-07