#include #include #include using std::cout; using std::endl; inline void zufallszahl() { cout << RAND_MAX << endl; srand((unsigned int) time(0)); for(int i=1; i<=20; i++){ cout << rand() % 6 +1 << " "; cout << endl; } }