testing-repository/cpp/xeinit2.cpp

16 lines
200 B
C++
Raw Permalink Normal View History

2020-10-21 06:50:00 +08:00
#include<iostream>
#include<cstdio>
using namespace std;
int main(){
int a=0,b;
printf("Press Ctrl+C to stop");
for(;;){
a=rand();
b=a;
a%=2;
//getchar();
}
printf("%d %d",a,b);
return 0;
}