Cloudbook:
C
Home
Variables
Strings
§ 1
↵ lesson
next →
C-O-matic
If statement
Else statement
Foreach statment
Strings
# A series of text fragments are stored # in variables $a through $f. # Rearrange the order of the print statements # to puzzle out the original e. e. cummings poems. $a = "a pretty how town" ; $b = "many bells down)" ; $c = "anyone lived in" ; $d = "(with up so floating" ; $e = " " ; $f = "\n" ; print $a ; print $b ; print $c ; print $d ; print $e ; print $e ; print $f ; print $f ;
The output goes here