Difference between revisions of "Printing Initials Assignment"

From WLCS
(New page: '''Objective:''' * Display initials as large ASCII art using iterations (loops) '''Directions:''' # Using while loops, you will print out your initials (FN, LN) # First, try to print out ...)
 
 
(One intermediate revision by the same user not shown)
Line 8: Line 8:
 
# Print out your FN and LN initials in large
 
# Print out your FN and LN initials in large
  
[[http://www.paulbui.net/wl/cs1/asciiArt/initials.txt Examples]]
+
[http://www.paulbui.net/wl/cs1/asciiArt/initials.txt Examples]

Latest revision as of 09:12, 13 January 2010

Objective:

  • Display initials as large ASCII art using iterations (loops)

Directions:

  1. Using while loops, you will print out your initials (FN, LN)
  2. First, try to print out a line of '*' by using one loop
  3. Put the loop from Step #2 into another loop so that it prints out a block of '*'
  4. Print out your FN and LN initials in large

Examples