随机生成30道四则运算
Posted 来自代码的诅咒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了随机生成30道四则运算相关的知识,希望对你有一定的参考价值。
#include<iostream>
#include<math.h>
#include<time.h>
using namespace std;
void main()
{
srand(time(0));
int a, b, c;
for (int i = 0; i < 30; i++)
{
a = rand() % 100;
b = rand() % 100;
c = rand() % 4;
if (c == 0)
{
cout << a << "+" << b << "=" << endl;
}
if (c == 1)
{
cout << a << "-" << b << "=" << endl;
}
if (c == 2)
{
cout << a << "*" << b << "=" << endl;
}
if (c == 3)
{
cout << a << "/" << b << "=" << endl;
}
}
}
以上是关于随机生成30道四则运算的主要内容,如果未能解决你的问题,请参考以下文章