Add files via upload

Add some code
This commit is contained in:
daleclack 2020-09-15 06:31:24 +08:00 committed by GitHub
parent b898bab0c5
commit 93ca3fd4da
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

14
cpp/xeinit.cpp Normal file
View File

@ -0,0 +1,14 @@
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
for(;;){
int a=0,b;
a=rand();
b=a;
a%=2;
printf("%d %d\n",a,b);
//getchar();
}
return 0;
}