编写题解 1771: [编程入门]链表之节点删除 C++ 第一次尝试用list容器 摘要:解题思路:注意事项:参考代码: #include<iostream> #include<list>struct Lnode{ int id; int score;};int main()…… 题解列表 2023年01月08日 0 点赞 0 评论 344 浏览 评分:0.0
3004: 成绩(c++代码) 摘要:最后的输出结果要是整型才能通过哦! ```cpp #include using namespace std; int main() { int a,b,c; cin>>a…… 题解列表 2023年01月08日 0 点赞 0 评论 543 浏览 评分:8.0
去 N M 的雇佣兵(题目都看不懂) 摘要:解题思路: 这个题目真的很烦,不看个一两秒钟很难理解首先,我们输入的是M,N,X,分别代表 最大体力,初始战斗力,初始能量元素第二,要知道题目要我们求的是最大战斗力,还有不要理解为他有多…… 题解列表 2023年01月08日 1 点赞 0 评论 1004 浏览 评分:7.3
3003: 鸡兔同笼问题 摘要:```cpp #include using namespace std; int main() { int a,b; cin>>a>>b; cout…… 题解列表 2023年01月08日 0 点赞 0 评论 801 浏览 评分:9.9
编写题解 1391: 震宇大神的杀毒软件 摘要:解题思路:注意事项:参考代码:#include <stdio.h> void sort(int *a, int n); int main() { int arr[100] = {0}; …… 题解列表 2023年01月08日 0 点赞 0 评论 343 浏览 评分:0.0
编写题解 1030: [编程入门]二维数组的转置 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<iomanip>using namespace std;int change(int arr[][3]) { for…… 题解列表 2023年01月08日 0 点赞 0 评论 353 浏览 评分:0.0
数据结构-字符串插入(C语言) 摘要:#include<stdio.h> #include<string.h> int main() { char str1[127], str2[127]; int n; scanf("…… 题解列表 2023年01月08日 0 点赞 0 评论 496 浏览 评分:0.0
编写题解 1390: 大神老白 摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> #include <stdlib.h> int main() { int a, …… 题解列表 2023年01月08日 0 点赞 0 评论 337 浏览 评分:0.0
[编程入门]自定义函数之数字后移(笨方法) 摘要:解题思路:从要移动处把数组看成两部分,再分别打印出来即可。注意事项:参考代码:#include <stdio.h>int main(){ int n,m,a[100],i,k=0,h=0,b[100]…… 题解列表 2023年01月08日 0 点赞 0 评论 370 浏览 评分:9.9