if(score>80){
if(sex=("女")){
System.out.println("进入女子组决赛");
}else{
System.out.println("女子组");
}else{
System.out.println("淘汰");
}
if(sex=("女")){
System.out.println("进入女子组决赛");
}else{
System.out.println("女子组");
}else{
System.out.println("淘汰");
}
2015-04-29
public class HelloWorld{
public static void main(String[] args) {
String English="www.imooc.com";
String Chinese="我爱慕课网";
System.out.println(Chinese);
System.out.println(English);
}
}
public static void main(String[] args) {
String English="www.imooc.com";
String Chinese="我爱慕课网";
System.out.println(Chinese);
System.out.println(English);
}
}
2015-04-29
妈蛋。。。之前好像没讲过单引号是引用的char类型而双引号引用的是String类型吧,之前学其他语言都不习惯用单引号,这次前面用单引号后面也就一致用的单引号,然后就出错,最后还是在本地运行才发现是哪里出问题,网上查了才知道还有这个区别,case后面是char所以要用单引号,后面输出是字符串,所以要用双引号。。。卡了我半天
2015-04-28
public class HelloWorld {
public static void main(String[] args) {
int age=25;
if (age>18){
System.out.println("成年");
}
else {
System.out.println("未成年");
}
}
}
public static void main(String[] args) {
int age=25;
if (age>18){
System.out.println("成年");
}
else {
System.out.println("未成年");
}
}
}
2015-04-28