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