Created
August 6, 2012 16:01
-
-
Save tchalvak/3275946 to your computer and use it in GitHub Desktop.
Simple Programming task
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Using php, write a program that must fulfill these requirements: | |
For the numbers from 1 to 100, | |
If the number is a multiple of 3, print cake instead of the number. | |
If the number is a multiple of 5, print pi instead of the number. | |
If the number is a multiple of both 3 and 5, print cakepi instead of the number. | |
Otherwise, print the number itself. | |
Each number's output should be followed by a new line. | |
*/ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Please do not leave solutions in comments, thanks!