Problem5724--(示例)如何让贪吃蛇动起来?

5724: (示例)如何让贪吃蛇动起来?

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

贪吃蛇移动

大蟾蜍设计的贪吃蛇游戏是如何在屏幕中移动的呢?

下面这段简单的代码能带你了解其中的奥秘!



#include <bits/stdc++.h> 
#include <windows.h> 
using namespace std; 
int main() 
{ 
      int space=0; 
      while(1) 
      { 
             for(int i=0;i<space;i++) cout<<" "; 
             cout<<"**@"; 
             Sleep(100); 
             system("CLS"); 
             
             space++; 
      } 
} 


Source/Category