Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~171 People Reached
Favorite Forums
Favorite Tags
c++ x 5
Member Avatar for Orusaka

Okay, so I have a program that read integers from a file and stores them in an array. The relevant code: [code] readLevel.open("level.txt"); if((readLevel.is_open())) { for(int rows = 0;rows<=BLOCKROWS-1;rows++) { for(int cols = 0;cols<=BLOCKCOLUMS-1;cols++) { blocks[rows][cols] = readLevel.get(); } } } [/code] However, here's the trouble. Instead of reading the …

Member Avatar for WaltP
0
90
Member Avatar for Orusaka

Okay, so I'm completly new to programming, and I've been using Sams Teach Yourself C++ in one hour a day over the last two days, admittingly taking in more than a days worth per day, though. This morning I decided I was bored of reading theory, and decided to get …

Member Avatar for VernonDozier
0
81