C语言-体育彩票7位数,感受身中500万的fell
发布于:2016-10-10 17:04
//体育彩票7位数,感受身中500万的fell
#include <stdio.h>
#include <conio.h>
#include <time.h>
#include <stdlib.h> //用到随机数函数
#include <Windows.h>
int main()
{
int iUser[7]; //保存我们购买彩票的号码
int iSys[7]; //保存开奖的号码
int i, j;
int count = 0; //保存我们中奖号码的个数
// srand((unsigned)time(0));//初始化随机种子,这样的话,每次产生的中奖号码才会
不一样
printf("请输入7位彩票号码:");
//得到我们自己想要的彩票号码
for(i = 0; i < 7; ++i)//++i效率高一点,在这里是和i++等效的
{
scanf("%1d", &iUser[i]);
}
printf("按任意键开始摇奖... ");
getch();//让程序停留在此,等候我们的输入
//产生中奖的号码
for(i = 0; i < 7; ++i)
{
iSys[i] = rand() % 10;//产生一个从0到9的随机数
//让中奖号码一个一个的出来,而且有效果
for(j = 0; j < 100; ++j)
{
printf("%d ", j % 10);// backspace 退格 a 是响铃
Sleep(30);//睡眠10毫秒
}
printf("%d ", iSys[i]);
Sleep(500);//再睡眠500毫秒
}
//输出我们的中奖结果
for(i = 0; i < 7; ++i)
{
if(iSys[i] == iUser[i])
++count;
}
printf(" ---------------------- ");
printf("您中了%d个数字,获得奖金%d元。 ", count, 5000000 * count / 7);
//看一下我们的彩票号码
// for(i = 0; i < 7; ++i)
// {
// printf("%d ", iSys[i]);
// }
system("pause");
// getchar();
return 0;
}
登录-评论。不评论下次不分享
0
今日新帖
0
昨日新帖
54
帖子总数
回复:C语言-体育彩票7位数,感受身中500万的fell