1、
#include "conio.h"
..............
clrscr();
..............
2、声明一个数组tag[10],初值为全0,分别表示0-9还没产生过,然后产生1全1-9的随机数和3个0-9之间的随机数。后面3个产生随机数的过程要用循环,循环体中,每产生一个随机数i时,要看一下tag[i]是否为0,是则选出i,并将tag[i]置为1,表示i已产生。如果为1,则说明i已经产生过,则继续循环。最后将4个数组合成一个4位数。
头文件 conio.h
函数原形:void clrscr(void)
例子:
#include
#include
main()
{printf("test first!\n");
clrscr();
printf("Now, U can't see the first words after clrscr\n");
}
clrscr();
cleardevice();
#include
system (\"cls\");