package Demo1;
/**
* Created by messi on 2018/7/5.
*/
public class DemoIf {
String today="周末";
String freetime="有时间";
/*
*如果今天是周末并且如果有时间,那么选择打游戏
* 否则选择敲代码
* 如果今天不是周末,那么去上课
*/
if(today.equals("周末")){
if(freetime.equals("有时间")){
System.out.print("打游戏");
}else{
System.out.println("敲代码");
}
}else{
System.out.println("去上课");
}
}
打游戏前面的println写成了print