标签:
题目要求:生成简单的四则运算,且不超过两位数,包含分数,且为真分数,随机生成30道题目。
问题细化:
1.随机生成两个数。
2.随机生成加减乘除。
4.循环30次输出四则运算。
具体实现:
1.利用随机函数rand()且除于100求余得两位数。
2.利用随机函数除于4求余得四种情况,分别表述四种运算。
3.循环30次,由于循环30次时,输出的四则运算时可能相同,所以将srand((unsigned)time(NULL))时间种子,放在for循环之外,避免了生成四则运算式相同。
4.除了上述显式要求之外,还应考虑除数不得为0,结果不得大于100,不得出现假分数等。
具体代码:
//2016.3.3 支持真分数,100以内的四则运算
//张江鹏
#include<iostream>
#include<string>
#include<stdlib.h>
#include<time.h>
#include<iomanip>
using namespace std;
//生成一个整数随机数
int f()
{
int a;
a=rand();
a=a%100;
return a;
}
void main()
{
int s1,s2,p,z=30;
srand((unsigned)time(NULL));
for(int i=0;i<z;i++)
{
s1=f();
s2=f();
p=f();
//生成一个运算符及输出算式
if(p%4==0)
{
if((s1+s2)>=100)
{
z+=1;
continue;
}
else
cout<<s1<<"+"<<s2<<"="<<endl;
}
if(p%4==1)
{
cout<<s1<<"-"<<s2<<"="<<endl;
}
if(p%4==2)
{
if((s1*s2)>=100)
{
z+=1;
continue;
}
else
cout<<s1<<"*"<<s2<<"="<<endl;
}
if(p%4==3)
{
if((s1>s2)||(s2==0))
{
z+=1;
continue;
}
else
cout<<s1<<"/"<<s2<<"="<<endl;
}
}
}
运算结果:
标签:
原文地址:http://www.cnblogs.com/gaara-zhang/p/5247268.html