利用随机函数在区域内产生*
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了利用随机函数在区域内产生*相关的知识,希望对你有一定的参考价值。
直接上代码
1 #include<iostream> 2 #include<stdlib.h> 3 #include<time.h> 4 #include<conio.h> 5 using namespace std; 6 int main() 7 { 8 const int D=20; 9 char test[D][D]; 10 while(1) 11 { 12 for(int i=0;i<D;i++) 13 for(int j=0;j<D;j++) 14 { 15 test[i][j]=‘ ‘; 16 } 17 18 srand(time(NULL)); 19 test[rand()%D][rand()%D-1]=‘*‘;//根据随机出来的位置,将符号赋值到上面。 20 for(int i=0;i<D;i++) 21 cout<<"_"; 22 cout<<"\\n"; 23 for(int i=0;i<D;i++) 24 { cout<<"|"; 25 for(int j=0;j<D;j++) 26 { 27 cout<<test[i][j]; 28 } 29 cout<<"|\\n"; 30 } 31 for(int i=0;i<D;i++) 32 cout<<"_"; 33 system("cls");//每产生一个随机位置就清理全屏; 34 } 35 return 0; 36 }
运行结果:
其实有点像贪吃蛇的的样子,但实际上还差得远。
以上是关于利用随机函数在区域内产生*的主要内容,如果未能解决你的问题,请参考以下文章
rand产生随机数怎样控制在1~52内而且不能重复。1~52必须出现一次。谢谢