首先,我决定在这里发布我的代码,这样每个人都可以理解代码中的问题,并能够更好地帮助我。
main.cpp
#include <sstream>
#include <iostream>
#include <cstdlib>
#include <string>
#include "validate.h"
#include "main.h"
using namespace std;
int main() {
name = getName();
score = quiz();
cout << "\n\n";
system("pause");
return (0);
}
string getName() {
cout << "Enter your name: ";
getline(cin, name);
val.set_item(name);
valid = val.vName();
if (valid) return name;
else {
cout << "Invalid name!\n\n";
getName();
}
}
int quiz() {
for (int loop = 0; loop <= 10; loop++) {
rand1 = rand() % 20 + 1;
rand2 = rand() % 20 + 1;
randop = rand() % 3;
op = operators[randop];
if (op == '*') ans = rand1 * rand2;
else if (op = '+') ans = rand1 + rand2;
else ans = rand1 - rand2;
cout << "What is " << rand1 << op << rand2 << " ? ";
getline(cin, input);
val.set_item(input);
valid = val.vInput();
if (valid) {
istringstream(input) >> inputint;
if (ans == inputint) {
cout << "Correct!\n\n";
score++;
}
else cout << "Incorrect!\n\n";
}
else cout << "Incorrect!\n\n";
}
return score;
}
validate.h
#ifndef validate_h
#define validate_h
using namespace std;
class validate {
string item;
int len;
bool check;
public:
void set_item(string x);
bool vInput() {
len = item.size();
for (int loop = 0; loop < len; loop++) {
if (item[loop] == '-' && loop == 0) continue;
check = isalnum(item[loop]);
if (check) continue;
else return false;
}
return true;
}
bool vName() {
len = item.size();
for (int loop = 0; loop < len; loop++) {
check = isalpha(item[loop]);
if (check) continue;
else return false;
}
return true;
}
};
void validate::set_item(string x) {
item = x;
}
#endif
main.h
#ifndef main_h
#define main_h
string name;
string input;
string getName();
validate val;
bool valid;
int quiz();
int score;
int rand1;
int rand2;
int randop;
int ans;
int inputint;
const char operators[3] = { '-', '+', '*' };
char op;
#endif
好的,所以我的代码编译得很好并完美地完成了所有内容。它询问名称,它知道什么时候它是无效的,但这是我的第一个问题。当您输入错误的名称时,它会再次提示您输入该名称。但是当你第二次进入它时会崩溃。这是一个截图示例。
该程序也不会生成随机数。每次运行都是一样的。这是截图。
非常感谢对这些问题的任何帮助。
也适用于随机问题。我查看了其他问题,当我尝试修复&#34; srand(时间(NULL));&#34;它告诉我,srand是模棱两可的。
答案 0 :(得分:0)
关于在调用getName()
时应用程序崩溃,请尝试使用以下方式刷新cin
缓冲区:
cin.ignore();
或
cin.clear();
清除缓冲区状态。我有一个类似的问题,我认为这是解决方案。关于你的随机数,你没有初始化随机种子。在使用以下内容生成随机数之前初始化随机种子:
srand (time(NULL));
希望这有帮助。
编辑:
刚刚看到你的评论。请尝试使用以下内容代替您的随机数种子:
srand(time(0));
确保您在此解决方案的文件头部#include <ctime>
。