四则运算随机题30道代码
Posted 琴弦0
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了四则运算随机题30道代码相关的知识,希望对你有一定的参考价值。
#include<iostream.h>
#include<stdlib.h>
int main(){
int a ,b,c,i;
for(i=0;i<30;i++){
a=rand()%100;
b=rand()%100;
c=rand()%4;
if(c==0)
cout<<a<<"+"<<b<<"="<<endl;
else if(c==1)
cout<<a<<"-"<<b<<"="<<endl;
else if(c==2)
cout<<a<<"*"<<b<<"="<<endl;
else if(c==3)
cout<<a<<"/"<<b<<"="<<endl;
}
return 0;
}
以上是关于四则运算随机题30道代码的主要内容,如果未能解决你的问题,请参考以下文章