Facebook
From pkrc, 6 Years ago, written in C++.
Embed
Download Paste or View Raw
Hits: 260
  1. V#include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4. int main()
  5. {
  6.         using namespace std;
  7.         srand(time(NULL));
  8.         cout << "Wylosowanie pierwsze: " << (( rand() % 50 ) + 7 ) << endl;
  9.         int liczba = (rand() % 50) + 7 ;
  10.         cout << "Wylosowanie drugie: " << liczba << endl;
  11.         liczba = (rand() % 50 )+ 7;
  12.         cout << "Wylosowanie trzecie: " << liczba << endl;
  13.         return 0;
  14. }