View Single Post
Old 12-01-2004, 04:18 PM   #2 (permalink)
SiNai
Dreams In Digital
 
SiNai's Avatar
 
Location: Iowa
Sounds like you know what you're doing..

So you get four arrays, process them, repeat ad infinitum until finished? I don't know c++ syntax, but seems like you're going to want a loop(exit when end of file) within a loop(exit when end of line), use some number to keep track how many lines you have read, this way you can easily tell when you've used up 4 lines, so then make a subprocedure call to process them.

I can't really tell what your problem is specifically, but if all your asking is how to find a carriage return, thats easy.. but I can't help
__________________
I can't seem to remember now
What it was like- to live life, before you.. symbiont
SiNai is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73