當前位置:商標查詢大全網 - 彩票開獎 - 用c語言編寫體育彩票10選7(7個號碼可以重復)的程序,哪位幫幫忙?

用c語言編寫體育彩票10選7(7個號碼可以重復)的程序,哪位幫幫忙?

在vc下是用不了的;

好像vc沒有random函數。

#include "stdlib.h" /*調用隨機函數*/

main()

{

int i,n,j;

clrscr();/*清屏*/

printf("please input the groups: \n");

scanf("%d",&n);

j=n+1;

while(n)

{

randomize(); /*初始化隨機數產生器*/

printf("the %3d groups: ",j-n);

for(i=1;i<8;i++)

printf("%d ",random(10)); /*產生0到(10-1)之間的隨機數*/

printf("\n");

n--;

getch();

}

}