Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 16th, 2012  |  syntax: None  |  size: 0.35 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. output "District Citizen Count"
  2.         districtInput = 0
  3.         while districtInput  < 22
  4.                 output districtInput + 1, DISTRICT_ARRAY[districtInput]
  5.                 districtInput = districtInput + 1
  6.         endwhile
  7.         output "Citizen Age Count"
  8.         output "Under 18", AGE_ARRAY[0]
  9.         output "18 to 30", AGE_ARRAY[1]
  10.         output "31 to 45", AGE_ARRAY[2]
  11.         output "46 to 65", AGE_ARRAY[3]