使用vector()解题. 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>#include<vector>using namespace std;bool cmp(vector…… 题解列表 2023年11月09日 0 点赞 0 评论 244 浏览 评分:0.0
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int a[600];int main(){ int n=0; in…… 题解列表 2023年11月09日 0 点赞 2 评论 249 浏览 评分:9.9
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ string name; doubl…… 题解列表 2023年11月09日 0 点赞 0 评论 605 浏览 评分:9.9
[编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char a[10]; gets(a); for (int…… 题解列表 2023年11月09日 0 点赞 0 评论 122 浏览 评分:9.9
冒泡排序c++ 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;struct student{ int name; double s…… 题解列表 2023年11月09日 0 点赞 0 评论 556 浏览 评分:0.0
超简单的C语言代码实现 摘要:解题思路:请看代码注意事项:无参考代码:#include<stdio.h>#include<string.h>int _asd(char a[1000]){ gets(a); int l=…… 题解列表 2023年11月09日 0 点赞 0 评论 187 浏览 评分:0.0
使用vector数组,能避免输出前导0 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<string>using namespace std;const int N=1e5…… 题解列表 2023年11月09日 0 点赞 0 评论 218 浏览 评分:0.0
3001:整数的和题解 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c;…… 题解列表 2023年11月09日 0 点赞 0 评论 258 浏览 评分:0.0
计算多项式的值:解题思路 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x,a,b,c,d; scanf("%lf %lf %…… 题解列表 2023年11月09日 0 点赞 0 评论 255 浏览 评分:0.0
水仙花数判断简单易懂(c语言详细代码) 摘要:解题思路:首先拿到所有三位数,再将每个三位数拆分算出立方和,最后 比较输出水仙花数注意事项:参考代码:#include<stdio.h> #include<math.h> int main() {…… 题解列表 2023年11月09日 0 点赞 0 评论 195 浏览 评分:9.9