编辑代码

class Ex1_1_5 {
	public static void main(String[] args) {
        //程序运行完成时一定要有输出语句,本工具才能正确展示运行结果。
		double x=0.2;
        double y=0.3;
        if((0.0 < x)&&(0.0 < y)&&x<1&&y<1)
        System.out.println(true);
        else
        System.out.println(false);
	}
}