四则运算
Posted try-my--best
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了四则运算相关的知识,希望对你有一定的参考价值。
设计思路
1.随机产生三个数
2.第二个数除以四产生余数
3.剩下两个数作运算
4.第二个数得到的余数用作对应出运算符
5.将三个依次输出
#include<iostream>
#include<string>
#include<time.h>
using namespace std;
int main()
{
srand((unsigned)time(NULL));
int a,b,c;
string x;
for (int i=0; i < 30; i++)
{
a = rand() % 100;
b = rand() % 100;
c = rand() % 4;
switch (c)
{
case 0:x = "+"; break;
case 1:x = "-"; break;
case 2:x = "*"; break;
case 3:x = "/";
}
cout << a << " " << x << " " << b+1 << " =" << " ";
if(i%3==0)
cout<<endl;
}
system ("pause");
return 0;
}
总结:对程序语言的掌握仍然需要提升
以上是关于四则运算的主要内容,如果未能解决你的问题,请参考以下文章