码迷,mamicode.com
首页 > 其他好文 > 详细

四则运算

时间:2015-03-06 21:57:16      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:

首先通过rand()函数随机的输出两个数字,定义一个字符串数组,同样通过随机函数输出加,减,乘,除。外加一个循环输出30组四则运算

#include <iostream.h>
#include <string.h>
#include <stdlib.h>
#include<time.h>
int main()
{
using namespace std;
srand(time(NULL));
for(int i=1;i<=30;i++)
{
int a=rand()%100;
int b=rand()%100;
string str[4]={"+","-","*","%"};
int d=rand()%4;
cout<<"("<<i<<")"<<a<<str[d]<<b<<"="<<endl;
}

}

技术分享

 

四则运算

标签:

原文地址:http://www.cnblogs.com/shishi1993-/p/4319271.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!