问疑rand()
#include "stdio.h"#include "stdlib.h"
main()
{
int i;
printf( "ten random numbers from 0 to 99\n\n" );
for( i = 0; i < 10; i++ )
{
printf( "%d\n", rand()%100 );
}
return 0;
}
这段程序,为什么能生成0to 99的数值呢?rand() 得到的不是0to1的随机数吗?然后对100取余。
我不明白怎么能出来0to99的数值。请指教