改进的数学学习工具

生成10个问题,进行10之内的加减法,并记录正确的回答数目,和程序的运行时间

#include
#include
#include
using namespace std;
void main()
{
    int i = 0;
    int rightNum = 0;
    long startTime = time(0);
    while (i<10)
    {

    
    srand(time(0));
    int a  = rand()%10;
    int b  = rand()%10;
    if (a     {
        int tempt = a;
        a = b;
        b = tempt;
    }

    int answer ;
    cout<<"what is"<     cin>>answer;
    bool rightAnswer = (answer==a-b);
    if (rightAnswer)
    {
        cout<<"right answer"<         rightNum++;

    }
    else {cout<<"wrong"<     i++;
}
    long endtime = time(0);
    cout<<"right number is "< }


你可能感兴趣的:(C++经典代码)