第一次写,现在只是个小白,还请大家多多指导。
#include
#include
using namespace std;
int main()
{
double x1;
int x2;
cout << “请输入a,b:”;
int a, b;
cin >> a >> b; //可取任意整数范围
srand(time(0));
int sum = 0;
cout << “数” << “\t” << “和” << endl;
for (int i = 0; i < 6; i++)
{
x1 = rand() / double(RAND_MAX);
x2 = x1 * (b - a) + a;
sum += x2;
cout << x2 << ‘\t’ << sum << endl;
}
system(“pause”);
return 0;
}
以上是我编写的一个求在区间 [a,b] 内随机生成 6 个整数,输出每个整数及各位数字之和。