今天是周五,旷了一节系主任的课,参加科二考试。
主任说:请假我准了,考试算零分。当然要是你科二挂了,你就更郁闷了。
还算欣慰,上午一次通过。
晚上,就是刚刚,听闻上课10分钟让写段代码,随机数什么的。没搞出来的要写个报告。
拿出电脑,开干。
19点28分到19点39分,搞定。多了一分钟。
#include<iostream>
#include<stdio.h>
#include<stdlib.h>
#include<time.h>
#define random(x) (rand()%x)
using namespace std;
void main()
{
srand((int)time(0));
for(int x=0;x<30;x++)
{
cout<<x+1<<". ";
if(random(90)+10<25)
cout<<10+random(90)<<"+"<<10+random(90);
else if(random(90)+10<50)
cout<<10+random(90)<<"-"<<10+random(90);
else if(random(90)+10<25)
cout<<10+random(90)<<"*"<<10+random(90);
else
cout<<10+random(90)<<"/"<<10+random(90);
cout<<"="<<endl;;
}
}
时间: 2024-12-07 10:07:53