赞
踩
利用随机函数的特性,制作彩票预测系统。要求:
○1能自定义彩票类型,彩票号码总长度,组数,以及每组号码的个数;
比如总长8个数字,4组,每组2个数字:00 01 02 03
○2出现的预测结果不可与之前出现过的结果重复;
○3可循环使用。
#include <iostream> #include <cstdlib> #include <ctime> using namespace std; int main(void) { int i = 0, j, t, k; int length,group,num; int arr[1000]; int n = 1; srand(time(0)); cout << "请依次输入彩票号码总长度,组数,以及每组号码的个数:" << endl; while(1) { cout << "第" << n << "次预测:"; cin >> length >> group >> num; for(j = 0;j < group;j++) { for(k = 0;k < num;k++) { t = rand() % 9; arr[i] = t; cout << arr[i]; } cout << " "; } cout << endl; n++; continue; } return 0; }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。