标签:源程序 com size str 运行 生成 ima stdio.h bsp
源程序代码:
#include<stdio.h>
int main()
{
int i,a,b,m;
for(i=0;i<30;i++)
{
a=rand()%(99-10+1)+10;
b=rand()%(99-10+1)+10;
m=rand()%(4-1+1)+1;
{
if(m==1)
printf("%d+%d=\n",a,b);
else if(m==2)
printf("%d-%d=\n",a,b);
else if(m==3)
printf("%d*%d=\n",a,b);
else if(m==4)
printf("%d/%d=\n",a,b);
}
}
}
运行结果截图:
标签:源程序 com size str 运行 生成 ima stdio.h bsp
原文地址:https://www.cnblogs.com/zoulan/p/9726476.html