#include #include #include int main() { int i, x; srand(time(0)); for(i=0; i<10; i++) { x = rand() % 6 + 1; printf("%d\n", x); } return 0; }