ICode9

精准搜索请尝试: 精确搜索
  • C语言在二维数组基础上实现贪吃蛇2022-03-21 22:06:16

    欢迎在此基础上创新 #define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> #include<stdlib.h> #include<conio.h> #include<windows.h> #include<time.h> #define High 20 #define Width 30 int food_x, food_y; //食物位置 int canvas[H

  • 【无标题】2022-03-21 13:59:38

    #include <stdio.h>  #include <stdlib.h> #include <conio.h> #include <windows.h> #define High 20 #define Width 30 int canvas[High][Width]={0}; void gotoxy(int x,int y) {     HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);     COORD

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有