1. 程式人生 > >小學二年級三十道四則運算題目。

小學二年級三十道四則運算題目。

分享 png info bubuko urn 答案 技術分享 查看 ++

代碼:

#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=\n", i+1,a[i],b[i]);
}
printf("按任意鍵查看答案");
getchar();
for (i = 0; i < 30; i++)
{

printf("%d......%d+%d=%d\n", i+1,a[i],b[i],a[i]+b[i]);
}

getchar();
return 0;
}

結果:

技術分享圖片

小學二年級三十道四則運算題目。