#include<time.h>


int main()
{
srand((int)time(NULL));
int num = rand() % 100;//范围[m,n],这样表示 %(n-m+1)+m;
}