• 大小: 5KB
    文件类型: .c
    金币: 1
    下载: 0 次
    发布日期: 2021-01-02
  • 语言: 其他
  • 标签: C语言  

资源简介

数据结构,抽象数据类型-----海龟作图!演示海龟作图的程序

资源截图

代码片段和文件信息

#include
#define EAST 1
#define SOUTH 2
#define WEST 3
#define NORTH 4

int getCommand1(int commands[]int size);
void getCommand(int commands[]); 
void printArray(int a[][50]int rowsint cols);
void draw(int commands[]int sizeint picture[][50]int rowsint cols);

main()
{
   int commands[100]={2512351235123512169};//存储命令 
  // int commands[100]={25123512356451245635123512169}; 
   int picture[50][50]={0}; //存储图片 
   
   //if (getCommand(commands100))
      draw(commands100picture5050);
   system(“pause“);
   return 0;
}

int getCommand1(int commands[]int size)
{
   int command;
   int i=0;
   
   printf(“input the commands\n“);  
   scanf(“%d“&command);
   while(command!=9 && i<=size-1){
     commands[

评论

共有 条评论