Guest User

Untitled

a guest
Feb 19th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.14 KB | None | 0 0
  1. <?php
  2. $toplam = 0;
  3.  
  4. for ($i=0; $i<100; $i = $i + 3){
  5.   $toplam = $toplam + $i;
  6.   echo "$i<br />";
  7. }
  8.  
  9. ?>
  10. <h2>Toplam: <?= $toplam ?></h2>
Add Comment
Please, Sign In to add comment