<?php $t=date("H"); if ($t<"20") { echo "Have a good day!"; } ?> <?php $t=date("H"); if ($t<"10") { echo "Have a good morning!"; } elseif ($t<"20") { echo "Have a…
public class Test { public static void main(String args[]){ int x = 10; if( x < 20 ){ System.out.print("这是 if 语句"); } } } if(布尔表达式){ //如果布尔表达式的值为true }else{ //如果布尔表达式的值为false } public class Test { public static void main(String args[]){ int x…