数组进行随机二十位大数相加减和乘运算

#include
#include
using namespace std;
int a[20]; //存储随机数1
int b[20]; //存储随机数2
int c[21]; //接收随机数之和
int d[20]; //接收随机数之差
int f[41]; //接受随机数之积
void Rand(int a[],int b[]) //随机数函数
{
srand((unsigned)time(NULL)); //随机种子
int x = rand() % 9 + 1;
int y = rand() % 9 + 1;
a[0] = x;
b[0] = y;
for (int i = 1; i < 20; i++) //生成随机数1
{
int x = rand() % 10;
a[i] = x;
}
for (int i = 1; i < 20; i++) //生成随机数2

数组进行随机二十位大数相加减和乘运算最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/14584.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>