随即抽出4名看看怎么不对吧
#include<stdio.h>#include<stdlib.h>
#include<time.h>
void main()
{
int 1w,2w,3w,4w;
randomize();
1w=random(50)+1000;
2w=random(50)+1000;
3w=random(50)+1000;
4w=random(50)+1000;
printf("\n参加名单:\n%d,\n%d,\n%d,\n%d",1w,2w,3w,4w);
}