#include #include#includeint main(){ srand((int)time(0)); for(int i=0;i<100;i++) { int s=rand()%100; printf("%d",s); } }
不就是random么