#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#define x 10
#define y 15
int main ()
{
int i;
srand((int)time(0));
for(i = 0; i < 5; i++)
{
printf("%d\n", x+rand()%(y-x+1));
}
return 0;
}
#include <stdio.h>
#include <stdlib.h>
#include