和谐巨人

文章
4
资源
0
加入时间
2年10月17天

rand()随机生成浮点数

#include <stdio.h>int main(){ srand(time(0));//这里以当前时间为种子 float a = (float)(rand() % 15 + 1) ; printf("%f\n",a); printf("Hello, World! \n"); return 0;}随机生成1-15内浮点数