C : 解释非常非常详细解释三种答案 摘要:解题思路:写来一个C语言程序框架,然后按照要求写内容输出,输出一行*号,换行再输出Hello World!,换行输出一行*号//一个标准的C语言程序框架#include&l…… 题解列表 2025年08月13日 12 点赞 0 评论 2079 浏览 评分:10.0
3020: 最大数位置 摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ &nbs…… 题解列表 2025年08月18日 3 点赞 0 评论 264 浏览 评分:10.0
2918成绩排序--链表实现 摘要:解题思路:链表实现注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>typedef…… 题解列表 2025年08月19日 1 点赞 0 评论 222 浏览 评分:10.0
C++:包含WXYZ的两种方法介绍 摘要:解题思路:方法一:利用ASCII码是连续的直接解题,对字符的ASCII码进行加减从而改变字符方法二:把26个字母的ASCII码变成循环,...->Y->Z->A->B->…… 题解列表 2025年08月19日 2 点赞 0 评论 1142 浏览 评分:10.0
2889--扫雷游戏地雷数计算 摘要:解题思路:哈哈哈,我看那个方向答案对我太难理解,只能自己硬着头皮手搓一个了,道爷我成了!!!注意事项: 自己看,事实上,你先自己按自己的思路敲,发现问题,总结问题,再问豆包,化简整改代码,其中你会遇到…… 题解列表 2025年08月20日 0 点赞 0 评论 438 浏览 评分:10.0
1226: 方砖问题 直观图解 摘要:#include using namespace std;int main() { int n = 0,a=0,min=0; cin >> n; for (int i = 0; i…… 题解列表 2025年08月22日 3 点赞 0 评论 221 浏览 评分:10.0
2905: 最大值和最小值的差 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>#include<cmath>using…… 题解列表 2025年08月23日 1 点赞 0 评论 205 浏览 评分:10.0
题解:母牛的故事(递归) 摘要:#include<stdio.h>intIndex(intn){ inta[1000]={}; intf…… 题解列表 2025年08月24日 15 点赞 0 评论 1514 浏览 评分:10.0
思路简单适合新手,无swap 摘要:#include#includeusing namespace std;int input(int nu[]){ for(int i = 0;i>nu[i]; }…… 题解列表 2025年08月25日 0 点赞 0 评论 354 浏览 评分:10.0
编写题解 2751: 超级玛丽游戏 摘要:#include<bits/stdc++.h>using namespace std;int main(){ cout<<" &…… 题解列表 2025年09月10日 1 点赞 1 评论 575 浏览 评分:10.0