Advertisement
Darksider3

Untitled

Mar 2nd, 2013
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4.  
  5.   for ($k=0;$k<10;$k++) {
  6.     for ($l=0;$l<10;$l++) {
  7.       for ($m=0;$m<10;$m++) {
  8.    for ($n=0;$n<10;$n++) {
  9.      print($k.'.'.$l .'.'.$m.'.'.$n."\n");
  10.    }
  11.       }
  12.     }
  13.   }
  14.  
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement