Name:
Anonymous
2008-04-25 14:49
Create a program that gives this as its output:
http://pastebin.ca/997618
Name:
Anonymous
2008-05-02 3:56
<?php
// Not including them all because I'm lazy
$penis = array("AEEA", "AIIA", "AOOA", "AUUA","BAAB","BEEB"... "ZUUZ");
$i = 0;
$max = count($penis);
while($i < $max) {
echo $penis[$i];
echo "<br />\n";
$i++;
}
?>