Я получаю сообщение об ошибке C2664, «не могу преобразовать аргумент 1 из char [10] в char», когда я пытаюсь скомпилировать и запустить. Я пытался заменить массивы указателями (от ответа char [] на char *). Я могу сделать это, не передавая массивы в функцию, но это то, что я пытаюсь улучшить.
#include <iostream>
#include <cctype>
using namespace std;
//Function prototypes
bool grade(char, char, int, int&, int&);
int goodbye();
int main()
{
const int TEST_LENGTH = 10;
char const correctAnswers[TEST_LENGTH] =
{ 'B', 'D', 'A', 'A', 'C', 'A', 'B', 'A', 'C', 'D' };
char studentAnswers[TEST_LENGTH] = {};
int correct = 0, missed = 0;
bool passing;
cout << "Welcome to your Driver's License Exam." << endl;
cout << "This test is ten multiple choice questions." << endl;
cout << "Only A, B, C, and D are valid answers." << endl;
cout << "Please begin.";
for (int i=0; i < TEST_LENGTH; i++)
{
int errorCount = 0;
cout << "Question " << i + 1 << ": ";
cin >> studentAnswers[i];
studentAnswers[i] = toupper(studentAnswers[i]);
while (studentAnswers[i] < 'A' || studentAnswers[i] > 'D')
{
if (errorCount++ > 3)
goodbye();
cout << "Only A, B, C, and D are valid input. Reenter. " << endl;
cout << "Question " << i + 1 << ": ";
cin >> studentAnswers[i];
}
}
passing = grade(studentAnswers, correctAnswers, TEST_LENGTH, correct, missed);
if (passing)
{
cout << "Congratulations!" << endl;
cout << "You have passed the exam." << endl;
cout << "Total number of correct answers: " << correct << endl;
cout << "Total number of incorrect answer: " << missed << endl;
}
else
{
cout << "You have failed the exam" << endl;
cout << "Sorry, you have not passed the exam." << correct << endl;
cout << "Total number of incorrect answer: " << missed << endl;
}
return 0;
}
bool grade(char answers[], const char key[], const int size, int& hits, int & misses)
{
for (int i = 0; i < size ; i++ )
{
if (answers[i] == key[i])
hits++;
else
misses++;
}
if (hits >= 8)
return true;
else
return false;
}
int goodbye()
{
cout << "GOOD BYE" << endl;
return 1;
}