V#include #include #include int main() { using namespace std; srand(time(NULL)); cout << "Wylosowanie pierwsze: " << (( rand() % 50 ) + 7 ) << endl; int liczba = (rand() % 50) + 7 ; cout << "Wylosowanie drugie: " << liczba << endl; liczba = (rand() % 50 )+ 7; cout << "Wylosowanie trzecie: " << liczba << endl; return 0; }