摘要: #include<iostream> using namespace std; void main() { int i,x,y,z; for(i=1;i<=30;i++) { x=rand()%99; y=rand()%99; z=(x+y)%4; if(z==0) cout<<i<<":<<x<< 阅读全文
posted @ 2018-03-22 10:40 tangruo 阅读(234) 评论(1) 推荐(0) 编辑