// 产生10到100随机数
//
#include "stdafx.h"
#include "stdlib.h"
#include "time.h"
int main(int argc, char* argv[])
{
int i;
int f,g;
srand((unsigned)time(NULL));
for(i=0;i<100;i++)
{
f=rand()%(100-10+1);
g=f+10;
printf("%d\n",g);
}
return 0;
}