testing-repository/cpp/xeinit.cpp

15 lines
169 B
C++
Raw Permalink Normal View History

2020-09-15 06:31:24 +08:00
#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;
}