Forum: C++ May 10th, 2008 |
| Replies: 8 Views: 474 thank you. i just saw it also. there was minore tweakings i had to do through the prog too but i think i'm on the right track now. fingers crossed |
Forum: C++ May 10th, 2008 |
| Replies: 8 Views: 474 i have adjusted all my loops accordingly and i fixed that array but i'm still getting the infinite loop after i prompt and read in my output file |
Forum: C++ May 10th, 2008 |
| Replies: 8 Views: 474 this is what my data looks like
studentinfo
567 white robert
43 blackburn donna
722 Grey jAMes
19 bRoWn jAnE |
Forum: C++ May 10th, 2008 |
| Replies: 8 Views: 474 this is what my program looks like but after prompting and reading my files, i get an infinite loop. the program compiles and i just put that simple cout statement just to see if anything will come... |
Forum: C++ May 10th, 2008 |
| Replies: 1 Views: 386 #include <iostream>
#include <fstream>
#include <cstring>
#include <cctype>
#include <iomanip>
using namespace std;
const int MAX = 30;
const int MAX_HW = 10; |
Forum: C++ May 9th, 2008 |
| Replies: 2 Views: 419 how does the code thing work in order to put up a program? |
Forum: C++ May 9th, 2008 |
| Replies: 1 Views: 398 ok. i'm having trouble understanding how to manipulate my data. this is what i have so far with my program. my input data is coming from two different file. the first file looks like this that... |
Forum: C++ May 5th, 2008 |
| Replies: 3 Views: 396 i didnt know if it should be a string or a struct that i would be declaring it as. and i know how to stop the infintie loop. what i need to know is what am i doing wrong that is causing the... |
Forum: C++ May 5th, 2008 |
| Replies: 3 Views: 396 this is a c++ program. ok. so this is my problem where i am supposed to get data from one file, read it in and make the proper adjustments to it, and output it on to another file. i'm supposed to... |
Forum: C++ May 4th, 2008 |
| Replies: 1 Views: 397 hi. i'm trying to run my program but i get this error message...
cannot convert âstd::stringâ to âstd::string*â for argument â1â to âvoid change(std::string*, int)â
...does anyone know what it... |