这慧野个应该符合你的要求了:
#include
#include
#include
double rnd(void)
{
static int fg=1;
int rd;
if (fg) {
srand(time(NULL));
fg=0;
}
return (double)(rand()%900+100)/100;
}
int main(void)
{
int i;
for (i = 0; i <局毕 10; i++) //输出10个[1.00,10.00]区间内的小数
printf("%.2f\n",rnd());
return 0;
}
运行结果:
6.71
8.54
7.80
3.07
4.24
2.13
3.34
7.84
2.06
4.70
Press any key to continue
得到整数后再转化成浮点数,最后除以10、租岁雹100或1000即可。
编程要学会变通,模板函数不可能考虑所弊帆有可能雀饥的,不然还用你来写代码编程干什么。