Update xeinit7

This commit is contained in:
daleclack 2021-10-15 21:43:16 +08:00
parent 91419f6a92
commit 78d3cb4fd3
1 changed files with 1 additions and 1 deletions

View File

@ -7,6 +7,6 @@ int main(int argc,char *argv[])
int x; int x;
srand((unsigned)time(NULL)); srand((unsigned)time(NULL));
x=rand(); x=rand();
std::cout<<x<<" "<<x%2<<std::endl; std::cout<<x%2<<" "<<x<<std::endl;
return 0; return 0;
} }