3.6练习
01题
这道题是一些典型的例子去测试真假(true or false)
if(100.00-100){
print 'true';
}
else print 'false';
print '<br>';
if('zero'){
print 'true';
}
else print 'false';
print '<br>';
if(false){
print 'true';
}
else print 'false';
print '<br>';
if(0+true){
print 'true';
}
else print 'false';
print '<br>';
if(0.000){
print 'true';
}
else print 'false';
print '<br>';
if(strcmp('false','False')){
print 'true';
}
else print 'false';
print '<br>';
if(0<=>'0'){
print 'true';
}
else print 'false';
print '<br>';
02题
这道题是测试复杂if嵌套,做这种题时需要格外注意判断条件
$age=12;
$size=13;
if($age>$size){
print 'message 1';
}
else if(($size++)&&($age>20)){
print 'message 2';
}
else {
print 'message 3';
}
print "<br>";
print "age is $age.size is $size";
03题
温度转换,华氏温度和摄氏温度的转换。华氏温度转摄氏温度,温度减去32,乘以5,除9;摄氏温度转华氏温度,乘以9,除5加32。从-50度到50度
$sw=-50;
while($sw<=50){
$huw=$sw*9/5+32;
print "华氏温度为:$huw.摄氏温度为:$sw<br>";
$sw++;
}
for($sw=-50;$sw<=50;$sw++){
$huw=$sw*9/5+32;
print "华氏温度为:$huw.摄氏温度为:$sw<br>";
}
经过这几道题的练习,会更加理解判断和循环的使用方式和功能
来源:CSDN
作者:pur + fri = 小刁
链接:https://blog.csdn.net/qq_44934847/article/details/104152346