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

小学四则运算问题

时间:2016-03-07 19:08:30      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

设计思路:

1.首先随机生成1100的随机数

2.随机生成14的整数,分别用来代表加减乘除

3.用for循环控制,调整输出格式,就可以输出30道四则运算题目

程序流程图:

技术分享

源代码:

#include<iostream>

#include<stdlib.h>

#include<stdio.h>

#include<time.h>

using namespace std;

void main()

{

int i;

int num;

int fz;

int fm;

srand((unsigned)time(NULL));

for(i=0;i<15;i++)

{

 

num=rand()%100+1;

cout<<num<<" ";

int sign;

sign=rand()%3+1;

if(sign==1)

cout<<"+ ";

if(sign==2)

cout<<"- ";

if(sign==3)

cout<<"* ";

if(sign==4)

cout<<"÷? ";

num=rand()%100+1;

cout<<num<<"="<<endl;

}

for(i=0;i<15;i++)

{

fz=rand()%100+1;

fm=rand()%100+1;

cout<<fz<<"/"<<fm<<" ";

int sign;

sign=rand()%3+1;

if(sign==1)

cout<<"+ ";

if(sign==2)

cout<<"- ";

if(sign==3)

cout<<"* ";

if(sign==4)

cout<<"÷? ";

fz=rand()%100+1;

fm=rand()%100+1;

cout<<fz<<"/"<<fm<<"="<<endl;

}

 

}

 

 

截图:

 技术分享

为完成原因:电脑C盘装了太多东西,快崩溃了,打开VS特别慢

小学四则运算问题

标签:

原文地址:http://www.cnblogs.com/yanyuqing/p/5251233.html

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