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

随机生成30道四则运算(一)

时间:2016-03-05 18:55:46      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

#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道四则运算(一)

标签:

原文地址:http://www.cnblogs.com/lyhao/p/5245342.html

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