哪位大师来看看哪有问题 摘要:#include<iostream> using namespace std; int a[100000][100000]; int print(int l,int r,int w,int s)…… 文章列表 2022年07月12日 0 点赞 2 评论 207 浏览 评分:9.9
自定义函数之数字后移题解疑问 摘要:```c #define _CRT_SECURE_NO_WARNINGS 1 #include #include void houyi(int* str, int n, int m) …… 文章列表 2022年07月11日 0 点赞 0 评论 242 浏览 评分:0.0
c++居然能发出声音!!! 摘要:众所周知,c++可以编程,但还能发出声调,你知道吗?话不多说,我们进入正题Beep(频率,毫秒)头文件是#include<windows.h>这个频率和音调的转换可以在网上查一下对照表比如中音1是52…… 文章列表 2022年07月07日 1 点赞 0 评论 1497 浏览 评分:9.4
c++小游戏:坦克大战-第八部分 摘要: void GameCheak(){ //剩余敌人为0且四坦克全部不存活 if(remain_enemy<=0 && !AI_tank[0].al…… 文章列表 2022年07月06日 0 点赞 0 评论 523 浏览 评分:0.0
c++小游戏:坦克大战-第七部分 摘要: { {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}, {4,0,0,…… 文章列表 2022年07月06日 0 点赞 0 评论 427 浏览 评分:0.0
c++小游戏:坦克大战-第六部分 摘要: { {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}, {4,0,0,…… 文章列表 2022年07月06日 0 点赞 0 评论 248 浏览 评分:7.3
c++小游戏:坦克大战-第五部分 摘要: { {4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4}, {4,0,0,…… 文章列表 2022年07月06日 0 点赞 0 评论 144 浏览 评分:0.0
c++小游戏:坦克大战-第四部分 摘要: void GetMap() //地图存放函数{ //map里的值: 个位数的值为地图方块部分,百位数的值为坦克 int i ,j; //map里的…… 文章列表 2022年07月06日 0 点赞 0 评论 188 浏览 评分:0.0
c++小游戏:坦克大战-第三部分 摘要: void MoveAITank(Tank* AI_tank) //AI专用函数,该函数主要为AI加强{ if(AI_tank->alive) //如果坦克活着 { if(A…… 文章列表 2022年07月05日 0 点赞 1 评论 246 浏览 评分:0.0