#include <iostream>
#include <cstdlib>
#include <ctime>
using namespace std;
int main(int argc,char* argv[]){
srand((unsigned)time(NULL));//設置種子
int colNo=10+rand()%50; //生成隨機數
int rowNo=10+rand()%50;
int flag=0;
system("color 0C");//設置字體顏色
for(int z=0;z<=rowNo;z++){
for(int i=0;i<=colNo;i++){
cout<<" ";
if(i==colNo){
if(0==flag){
cout<<"1"<<endl;
flag=1;
}else{
cout<<"0"<<endl;
flag=0;
}
}
}
if(z==rowNo){
colNo=10+rand()%50;
rowNo=10+rand()%50;
z=0;
}
}
cout<<">GameOver<"<<endl;
//暫停屏幕
cin.get();
}
簡單的代碼實現,要點:隨機數 的生成方法。。
摘自 完美科技