Skip to content

Instantly share code, notes, and snippets.

@dotsonjb14
Last active April 28, 2018 00:06
Show Gist options
  • Save dotsonjb14/2c18713ad5d503d268405d1920b26a0e to your computer and use it in GitHub Desktop.
Save dotsonjb14/2c18713ad5d503d268405d1920b26a0e to your computer and use it in GitHub Desktop.
#include <stdlib.h> /* srand, rand */
#include <time.h> /* time */
#include <iostream>
int main()
{
srand(time(NULL) + 729 + 985);
std::cout << "Rolled number here -> " << (rand() % 6 + 1) << "\n" << std::flush;
system("pause");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment