二年级小学生四则运算30道题目
Posted princehai
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二年级小学生四则运算30道题目相关的知识,希望对你有一定的参考价值。
编写代码如下:
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char **argv)
{
int a[30],b[30];
int i,c,d;
srand((unsigned int)time(NULL));
for (i = 0; i < 30; i++)
{
a[i] = rand()%101;
b[i] = rand()%101;
printf("%d......%d+%d= ", i+1,a[i],b[i]);
}
printf("按任意键查看答案");
getchar();
for (i = 0; i < 30; i++)
{
printf("%d......%d+%d=%d ", i+1,a[i],b[i],a[i]+b[i]);
}
getchar();
return 0;
}
#include <string.h>
#include <stdlib.h>
#include <time.h>
int main(int argc, char **argv)
{
int a[30],b[30];
int i,c,d;
srand((unsigned int)time(NULL));
for (i = 0; i < 30; i++)
{
a[i] = rand()%101;
b[i] = rand()%101;
printf("%d......%d+%d= ", i+1,a[i],b[i]);
}
printf("按任意键查看答案");
getchar();
for (i = 0; i < 30; i++)
{
printf("%d......%d+%d=%d ", i+1,a[i],b[i],a[i]+b[i]);
}
getchar();
return 0;
}
运行结果如下:
以上是关于二年级小学生四则运算30道题目的主要内容,如果未能解决你的问题,请参考以下文章