Print Shapes Exercises

From WLCS
Revision as of 13:56, 26 November 2008 by Admin (talk | contribs) (New page: '''Objective:''' * Become more familiar with looping and printing to the screen '''Print Rectangle''' * Prompt the user for a height number * Prompt the user for a width number * Using t...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Objective:

  • Become more familiar with looping and printing to the screen

Print Rectangle

  • Prompt the user for a height number
  • Prompt the user for a width number
  • Using the height and width, print out a rectangle of *s.
  • Example:
      h = 3
      w = 5

      *****
      *****
      *****

Print Triangle

  • Prompt the user for a number N
  • Print out a triangle that looks like the following:
  • Example:
      N = 4

      *
      **
      ***
      ****