Blogger Information
Blog 13
fans 0
comment 0
visits 8913
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
1117作业
文永
Original
626 people have browsed it

实例

<?php
$var = 100;
var_dump( $var >=100 ? '买':'不买');
echo '<hr>';

$var = 10000;
if ($var >=10000){
    $var1 = '我要买电脑';
    echo $var1;
}
echo '<hr>';

$var = 1;
if ($var >=10000){
    $var1 = '我要买电脑';
    echo $var1;
}
else{
    $var2 ='我啥也不买了';
    echo $var2;
    echo '<hr>';
}
$var = 500;
if ($var >=10000){
    echo '我有10000块钱';
}
elseif ( $var >= 9000){
    echo '我有9000块钱';
}
elseif ( $var >= 8000){
    echo '我有8000块钱';
}
else {
    echo '我好穷啊';
    echo '<hr>';
}
$int =1;
while ( $int < 10){
    echo $int;
    echo '<hr>';
    $int ++;
}
$int = 1;
do {
    echo $int;
    echo '<hr>';
    $int ++;
} while($int < 0 );


for ($int=1;$int<10;$int++){
    if($int == 5){
        continue;
    }
    var_dump($int);
    echo '<hr>';
}

for ($int=1;$int<10;$int++){
    if($int == 5){
        break;
    }
    echo $int;
    echo '<hr>';
}

image.png


image.png


image.png





image.png




image.png

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:下次把作业内容写到名称上,便于一目了然, 谢谢
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!