登录 注册
当前位置:主页 > 资源下载 > 9 > 详尽解析C++编程实例

详尽解析C++编程实例

  • 更新:2024-06-29 14:02:08
  • 大小:14.51MB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:C++ - 后端
  • 格式:RAR

资源介绍

C++编程的许多实例讲解 例如贪吃蛇的一段代码: //设置背景 void setBG(int length, int width){ HANDLE hOut; COORD OutChar; OutChar.X = 10; OutChar.Y = 10; int i = 0; int j = 0; for(i = 0; i < width; i++){ for(j = 0; j < length; j++){ bg[i][j].x = i; bg[i][j].y = j; bg[i][j].blocked = false; bg[i][j].food = false; OutChar.X = j+10; hOut = GetStdHandle(STD_OUTPUT_HANDLE); SetConsoleCursorPosition(hOut,OutChar); cout << col(BG_WHITE,true) << " "; } cout << endl; OutChar.Y = i+10; SetConsoleCursorPosition(hOut,OutChar); } }