#include #include #include int main() { srand(time(NULL)); for (int i = 0; i<10; i++) printf("%d\n", (int)(rand()/(double)RAND_MAX*100)); }