Hello, I am currently tutoring a student in a begining computer science class. Before the student turns it in i like to walk them through step by step. I am trying to figure out how to do this program this time around, and I am stumped.
I am to find (from a seperate .txt file) the Area's higher then 10,000 and save the county that is included in that in an array, but every time my code prints out 200 lines of the same thing, then moves to the next area..can I please have some assistance!?
I have included the code i have come up with so far, and the .txt file...please help!
DIM state as string
DIM county as string
DIM population
DIM area
DIM largecounty(1 TO 200) as string
DIM count
DIM n
OPEN "2000Census.txt" FOR INPUT AS
#1DO WHILE NOT EOF(1)
INPUT
#1, state, county, population, area
IF area > 10000 THEN
FOR n = 1 TO 200
LET largecounty(n) = county
print largecounty(n)
NEXT
LET Count = Count + 1
Print count
END IF
LOOP
CLOSE
#1Thank you!
Gowan
Comments
[url= http://www.unmbtshoes.com]mbt shoe[/url]
mbt shoe
: Gowan
Hi Gowan. I'm new to this forum (but not to BASIC programming), and I'm not sure how to use the site yet. You may have already been given the advice you needed, or moved on from the problem.
Anyway,I have written a short QB file that does what you wanted. Even if you don't need it, I enjoyed the exercise of writing it. I'll attach it as a Zip file (I hope), as the forum doesn't like the data file I wrote to go with it.