资源简介
数据结构,抽象数据类型-----海龟作图!演示海龟作图的程序
代码片段和文件信息
#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[
相关资源
- PIC单片机程序全集
- 在可变分区管理方式下采用最先适应
- 神经网络PID控制源程序
- EXE程序反编译器,将EXE程序还原为代
- 数据结构-通讯录
- featerMatch.rar
- STM32F0延时函数,用于ms及us延时
- 操作系统课程设计--模拟文件系统
- 模拟Ethernet帧发送过程
- 计算CRC冗余校验码(32)
- 用NTC热敏电阻做温度采集
- 数据结构:查找的运用
- stm32C8T6模拟IIC协议
- 离散数学实验4:欧拉图的判定并输出
- A*算法的实现 路径规划
- ARM开发板远程升级程序
- 基于51单片机的电子日历
- 小学生算术四则运算测试系统
- 教务系统C程序及实验报告
- Goertzel算法
- 出租车计价器课程设计
- 堆栈的计算器
- adxl345加速度传感器
- 初学者简单C实现仓库管理系统
- 霍夫曼编码
- 基于51的音乐盒
- 基于arm下的电子相册
- 基于Qt5实现的心率变异与心率减速力
- 嵌入式局域网聊天系统服务端
- 宿舍管理系统源代码
评论
共有 条评论