I'm writing a program that will guess words taken from a big text file. One step is taking user input to determine the length of the string.
edit: added full code, made some changes
#include <iostream>
#include <string>
#include <fstream>
using namespace std;
int i(0),n(0),counter(0),limit(0);
char words[60000][30];
int initarray() {
int length(0);
string line;
char temp;
ifstream wordlist ("text.txt");
if (wordlist.is_open())
{
while (wordlist.good())
{
getline (wordlist,line);
length=line.length();
for (n=0;n!=length;n++)
{
temp=line.at(n);
words[i][n]=temp;
}
i++;
counter++;
}
}
else
{
cout<<"file not opened";
}
wordlist.close();
return 0;
}
int selectlength()
{
int length;
bool shorter(false),longer(false);
cout <<"length of word"<<endl;
cin >> length
limit=counter;
counter=0;
for (i=0;i<limit;i++){
for (n=0;n!=length;n++){
if (words[i][n]=='\0')
{
shorter=true;
break;
}
}
if (words[i][length+1] != '\0')
{
longer=true;
}
if (longer==true || shorter==true)
{
i--;
}
}
return 0;
}
int printresults(){
for (i=0;i!=counter;i++){
for (n=0;n<=20;n++){
cout << words[i][n];
}
cout <<endl;
}
return 0;
}
int main() {
initarray();
selectlength();
printresults();
return 0;
}
but my problem is happens whenever the program, which compiles fine, gets to the "cin" part to read user input for the length. When I enter in any number and hit enter, nothing happens. The program is still running, and just keeps taking input indefinately. Any help? Could it have anything to do with my using ifstream earlier in the prigram, albeit in a different function?
cin.get(length,). Paste the actual code or test case. – wilx Jun 30 '12 at 18:21cin >> length. – chris Jun 30 '12 at 18:43;aftercin >> lengthpart. – Andreas Brinck Jun 30 '12 at 19:00