Advertisement
MeehoweCK

Untitled

Mar 28th, 2024
396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.27 KB | None | 0 0
  1. #include <iostream>
  2. #include <cstdlib>
  3. #include <ctime>
  4.  
  5. int main() {
  6.     srand(time(nullptr));       // time(nullptr) zwraca aktualny czas komputera
  7.     auto liczbaLosowana{ 1.0 * rand() / RAND_MAX };
  8.     std::cout << "Wylosowano liczbe " << liczbaLosowana << std::endl;
  9.     return 0;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement