二年级小学生四则运算30到题目
Posted ienholt
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到题目的主要内容,如果未能解决你的问题,请参考以下文章