Created
December 16, 2017 15:04
-
-
Save espresso3389/89298088da2ca0fee13103433544f886 to your computer and use it in GitHub Desktop.
Random number sequence
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main() | |
{ | |
std::mt19937 r; | |
for (;;) | |
std::printf("%d\n", r()); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment