We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
save the code as rngtest.cpp and compile & run with the following parameter:
rngtest.cpp
#include"testlib.h" int main(int argc,char*argv[]) { registerGen(argc,argv,1); printf("%d\n",rnd.next(0,15)); }
These parameters
rngtest abc 0 rngtest abc 1 ... rngtest abc 9
will all give output 8. And parameters
8
rngtest abc a rngtest abc b ... rngtest abc x
will all give output 10.
10
The text was updated successfully, but these errors were encountered:
No branches or pull requests
save the code as
rngtest.cpp
and compile & run with the following parameter:These parameters
will all give output
8
.And parameters
will all give output
10
.The text was updated successfully, but these errors were encountered: