package congcong;
public class parrotTrouble {
public static void main(String[] args) {
// TODO Auto-generated method stub
boolean a=parrotTrouble(true,6);
boolean b=parrotTrouble(true,7);
boolean c=parrotTrouble(false,6);
System.out.println(a);
System.out.println(b);
System.out.println(c);
}
private static boolean parrotTrouble(boolean talking, int hour) {
// TODO Auto-generated method stub
return (talking&&(hour<7||hour>20));
}
}
网友评论