小学生算数题大全
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了小学生算数题大全相关的知识,希望对你有一定的参考价值。
#include<stdio.h>
#include<time.h>
#include<stdlib.h>
void main(){
int a,b,i,d;
for(i=1;i<300;i++){
d=rand()%4;
a=rand()%100;
b=rand()%100;
switch(d){
case 1:printf("%d+%d=\n",a,b);
case 2:printf("%d-%d=\n",a,b);
case 3:printf("%d*%d=\n",a,b);
case 4:printf("%d/%d=\n",a,b);
}
}
}
以上是关于小学生算数题大全的主要内容,如果未能解决你的问题,请参考以下文章