标签:
时间:2015.3.6
地点:基础教学楼601
要求:在二十分钟内编写一段代码满足能随机抽取几组四则运算题目
因为没在规定时间完成特写此检讨,望广大园友共勉!
正确代码如下:
#include<iostream>
using namespace std;
int main()
{
int a,b,c,d,k;
for(k=0;k<10;k++)
{
a=rand()%99;
b=rand()%99;
c=rand()%5;
if(c==1)
cout<<a<<"+"<<b<<"="<<endl;
if(c==2)
cout<<a<<"-"<<b<<"="<<endl;
if(c==3)
cout<<a<<"*"<<b<<"="<<endl;
if(c==4)
cout<<a<<"/"<<b<<"="<<endl;
}
return 0;
}
附图运行结果:
说道没写出来原因,其实也没什么不好意思的就是不会呗!会了还有写不出来的!
不过不会写不是什么光荣事迹,今后一定奋发图强学好软件,愿与各位园友共勉。
标签:
原文地址:http://www.cnblogs.com/licongzhuo/p/4320084.html