首页 > 代码库 > 随机生成小学算式1.0

随机生成小学算式1.0

优点:

    1.由用户决定算式的数量以及难度(通过改变运算数的范围以及运算符的数量);

    2.支持用户输入答案并判断是否正确;

    3.给出正确答案并输出用户得分;

    4.支持小数结果和整数结果;

缺点:

    1.暂不支持生成括号;

    2.暂不支持分数结果;

主要方法:

    1.每生成一个随机运算数后,生成一个运算符(+-*/),最后一个随机运算数生成后不再生成运算符,一边生成一边输出,这样就产生了一个算式。

    2.在算式生成的过程中,利用一个float栈和一个char栈将算式转换成后缀表达式,再进行计算。

    3.算式生成完成的同时,对该算式的计算也完成,将正确的结果存储在一个float数组中。

测试结果如下:

    技术分享

 

源代码如下:

    

#include <iostream>
#include <stdlib.h>
#include <time.h>
#include <stack>
#include <math.h>
#define random(x) (rand()%x+1)//产生大于0,小于或等于某一给定最大值的随机数
using namespace std;

int GetP(char a)
{//定义优先级
if(a==‘+‘||a==‘-‘)
return 0;
else if(a==‘*‘||a==‘/‘)
return 1;
}

float calculate(float a, float b, char v)
{//用于中间计算
switch(v)
{
case ‘+‘:return b+a;
case ‘-‘:return b-a;
case ‘*‘:return b*a;
case ‘/‘:return b/a;
}
}

void Transform(stack<float> *A, stack<char> *B,char Oper)
{
float a,b;//中间变量,用于计算
char v;//中间变量,用于计算
if(Oper==0)
{
while(B->empty()!=1)
{
a = A->top();
A->pop();
b = A->top();
A->pop();

v = B->top();
B->pop();

A->push( calculate(a,b,v) );
}
}
else
{
if( B->empty()==1 || GetP(B->top()) < GetP(Oper) )
{
B->push(Oper);
}
else
{
a = A->top();
A->pop();
b = A->top();
A->pop();
v = B->top();
B->pop();
A->push( calculate(a,b,v) );
Transform(A, B,Oper);
}
}
}

int main()
{

stack<float> Operands;//浮点数型栈,存储操作数
stack<char> Operators; //字符型栈,存储操作符
stack<float> *p1;
stack<char> *p2;
p1=&Operands;
p2=&Operators;

int EqNum;//算式的数量
int Max;//算式中运算数的最大值
int OpNum;//每个算式中运算符的数量

int Score=0;//记录用户得分
float RightAnswer[20];//记录算式的正确答案
float Answer[20];//记录用户的答案
char Oper=0;//记录中间操作符

cout << "Please input the amount of equations." << endl;
cin >> EqNum;
cout << "Please input the range of the numbers in your equation." << endl << "For example: 10" << endl;
cin >> Max;
cout << "Please input the amount of operators in each equation." << endl << "No more than ten." << endl;
cin >> OpNum;
if(OpNum>10)
{
cout << "The amount of operators is out of range, please try again." << endl;
cin >> OpNum;
}


int i,j;
srand( (int) time(0) );
float a,b;//中间变量,用于计算
char v;//中间变量,用于计算

for(i=0;i<EqNum;i++)
{
for(j=0;j<OpNum;j++)
{
p1->push(random(Max));
cout << p1->top() << " ";
switch(random(4))
{
case 1:Oper=‘+‘;break;
case 2:Oper=‘-‘;break;
case 3:Oper=‘*‘;break;
case 4:Oper=‘/‘;break;
}
cout << Oper << " ";
Transform(p1, p2,Oper);
Oper=0;
}
p1->push(random(Max));
cout << p1->top() << endl;
Transform(p1, p2,Oper);
RightAnswer[i]=p1->top();
p1->pop();
}


cout << "Do you want to deal with them?\nInput Y or N" << endl;
char Order;
cin >> Order;
if(Order==‘Y‘)
{
cout << "Please input your answer. Your answer should be integer or with two decimal palces." << endl << "For example: 25 7.64" << endl ;
for(i=0;i<EqNum;i++)
{
cin >> Answer[i];
if( fabs(RightAnswer[i]-Answer[i]) < 0.01 )
{
Score++;
}
}
cout << "The right answers are : ";
for(i=0;i<EqNum;i++)
{
cout << RightAnswer[i] << " ";
}
cout << endl << "With a precision of two decimal palces, your score is: "<< Score << endl;
}
else
{
cout << "The right answers are : ";
for(i=0;i<EqNum;i++)
{
cout << RightAnswer[i] << " ";
}
}
return 0;
}

 

随机生成小学算式1.0