1. 1.
    0
    <?php
    $i=19;
    $toplam=0;
    while($i<=101){
    if($i%2==0){
    $toplam=$i+$toplam;
    }
    $i++;
    }
    echo $toplam;
    ?>
    ···
   tümünü göster