#include
Int main (void)
{
/ / Bind the random number and time ~ So each time the number is different ~
SRAND (NULL);
For (int i = 0; i <50; i)
Printf ("% d / n", rand ());
Return 0;
}