Я проверил все свои строки и массивы. Ничто не выглядит неправильно для меня. Мои включенные заявления могут быть проблемой. Возможно, я скучаю по одному. Я начинающий программист. Так что я не знаю, почему этот код не будет работать. Это выглядит правильно и должно работать абсолютно.
#include<iostream>
#include<cstdlib>
#include<ctime>
#include<fstream>
#include<string>
using namespace std;
int main()
{
int i;
char response;
char answers[20];
char uresponse[20];
int score=0;srand(time(0));
int test_num = rand() % 2+1;
// cout << test_num << endl;
if (test_num == 1)
{
string line;
ifstream myfile ("form1.txt");
getline (myfile,line);
// cout<< line<<endl;
for (int i = 0; i <= 19; i++)
{
answers[i] = line[i*2];
// cout<<answers[i]<<endl;
}
getline (myfile,line);
if ( myfile.is_open())
{
int x = 0;
while ( myfile.good() )
{
char answers[20];
string line;
getline (myfile,line);
// cout<< line << endl;
if( line == "")
{
cout << "Enter answer: ";
cin >> response;
if(response == 'a', 'A' || response == 'b', 'B' || response == 'c', 'C' || response == 'd', 'D')
{
response = response;
}
else
{
cout << "ERROR. You must enter A, B, C, or D. Please re-enter: ";
cin >> response;
}
response = toupper(response);
uresponse[x] = response;
x++;
}
}
// cout << uresponse <<endl;
// system("pause");
}
else
{
myfile.close();
}
}
else
{
string line;
ifstream myfile ("form2.txt");
getline (myfile,line);
// cout<< line<<endl;
for (int i = 0; i <= 19; i++)
{
answers[i] = line[i*2];
// cout<<answers[i]<<endl;
}
getline (myfile,line);
if ( myfile.is_open())
{
int x = 0;
while ( myfile.good() )
{
char answers[20];
string line;
getline (myfile,line);
// cout << line << endl;
if( line == "")
{
cout << "Enter answer:";
cin >> response;
if(response == 'a', 'A' || response == 'b', 'B' || response == 'c', 'C' || response == 'd', 'D')
{
response = response;
}
else
{
cout << "ERROR:You must enter A, B, C, or D. Please re-enter:";
cin >> response;
}
response = toupper(response);
uresponse[x] = response;
x++;
}
}
// cout<<uresponse<<endl;
// system("pause");
}
else
{
myfile.close();
}
}
for (int j=0; j<20; j++)
{
if (answers[j] == uresponse[j])
score += 1;
}
if(score >15)
{
cout << "CONGRATULATIONS! You Passed with a score of ";
cout << score << endl;
system("pause");
}
else
{
cout<< "You Failed with a score of ";
cout << score << endl;
system("pause");
}
system("pause");
return 0;
}`enter code here`
Это может быть виновником:
answers[i] = line[i*2];
Ты уверен i*2
не> = line.size()
?
Кстати, этот код выглядит хитроумно:
if(response == 'a', 'A' || response == 'b', 'B'
|| response == 'c', 'C' || response == 'd', 'D')
{
response = response
}
Возможно, вы хотите использовать switch
и инициализация ответа на себя .. почему?
РЕДАКТИРОВАТЬ:
И ваш while(myfile.good())
Это, вероятно, выполняется 100 раз, и вы продолжаете увеличивать x
Трудно сказать в вашем коде .. у вас много «хитрых» строк: P
Других решений пока нет …