Skip to content

Instantly share code, notes, and snippets.

@sjhalayka
Created June 6, 2020 15:42
Show Gist options
  • Save sjhalayka/451844b079108e8e77da70b10571786a to your computer and use it in GitHub Desktop.
Save sjhalayka/451844b079108e8e77da70b10571786a to your computer and use it in GitHub Desktop.
#include <iostream>
#include <cstdio>
#include <ctime>
using namespace std;
int main(void)
{
srand(time(0));
cout << (rand()%3) << endl;
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment