链表合并 题解(很简单的,懒人专用) 摘要:解题思路:这题我没有用链表做,我感觉太麻烦了。呵呵—用了结构体,下面是程序。希望大家多多支持!注意事项:无。参考代码:#include<bits/stdc++.h>using namespace st…… 题解列表 2022年05月07日 0 点赞 0 评论 394 浏览 评分:0.0
1000:求开朗的a+b 摘要:解题思路:首先我们要定义两个数,然后把它们的和相加。注意事项:此题不止一种写法。参考代码:(1)#include<bits/stdc++.h>using namespace std;int main(…… 题解列表 2022年05月07日 0 点赞 0 评论 884 浏览 评分:9.9
[编程入门]自定义函数之整数处理 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;void swap(int *,int *);int main(){ int …… 题解列表 2022年05月07日 0 点赞 0 评论 289 浏览 评分:0.0
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ char a[100]; get…… 题解列表 2022年05月07日 0 点赞 0 评论 310 浏览 评分:0.0
2004:统计成绩 摘要:解题思路:无注意事项:无参考代码:#include<bits/stdc++.h>using namespace std;long long z,s;double t;int main(){ f…… 题解列表 2022年05月07日 0 点赞 0 评论 290 浏览 评分:0.0
[编程入门]宏定义之闰年判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long n;int main(){ cin>>n; if(n%10…… 题解列表 2022年05月07日 0 点赞 0 评论 324 浏览 评分:0.0
计算数字个数 摘要:解题思路:用字符串注意事项:i的下标是0参考代码:#include<bits/stdc++.h>using namespace std;string z;long long s;int main(){…… 题解列表 2022年05月07日 0 点赞 0 评论 256 浏览 评分:0.0
二级C语言-寻找矩阵最值 题解 摘要:解题思路:这题我用了伪二维的方法来比大小找最大的数,再用两个变量来分别标记他的横竖位置。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;i…… 题解列表 2022年05月07日 0 点赞 0 评论 357 浏览 评分:0.0
[编程入门]Sn的公式求和 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int n,a=2; cin>>n; lo…… 题解列表 2022年05月07日 0 点赞 0 评论 253 浏览 评分:0.0
[编程入门]字符串分类统计 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;long long yw,sz,kg,qt;int main(){…… 题解列表 2022年05月07日 0 点赞 0 评论 367 浏览 评分:0.0