[ create a new paste ] login | about

oflow

Name: oflow
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by oflow:

PHP, pasted on Jan 28:
1
2
3
4
5
<?php
for ( $i = 1; $i <= 100; $i++ ) {
    if ( $i % 15 == 0 ) {
        print 'FizzBuzz';
    } else if ( $i % 3 == 0 ) {
...
view (15 lines, 100 lines of output)
PHP, pasted on Jan 28:
1
2
<?while($i++<100)echo$i%3?'':Fizz,$i%5?$i%3?$i:'':Buzz,"
";
view (2 lines, 100 lines of output)
PHP, pasted on Jan 28:
1
2
<?while($i++<100)echo$i%3?$i%5?$i:'':Fizz,$i%5?'':Buzz,"
";
view (2 lines, 100 lines of output)