编写题解 1034: [编程入门]自定义函数之数字分离 摘要:解题思路:将输入的四位数n进行对10取余,再除以10,得到各个位数的值后,加上48,放入字符型数组,在函数中直接按要求输出。注意事项:1.ASCII的存储方式与整形数据相似。所以可以用整形常量给字符型…… 题解列表 2024年08月04日 0 点赞 0 评论 296 浏览 评分:0.0
位运算基础 摘要:#include<bits/stdc++.h> using namespace std; #define int long long int lowbit(int x) { ret…… 题解列表 2024年08月04日 0 点赞 0 评论 148 浏览 评分:0.0
STL中有swap交换(无需手搓) 摘要:#include<bits/stdc++.h> using namespace std; const int N=1010; int a[N]; int main() { int n,m…… 题解列表 2024年08月04日 0 点赞 0 评论 152 浏览 评分:0.0
这个比1246数据要强,考虑了闰年的情况 摘要:#include<bits/stdc++.h> using namespace std; int main() { int y,m,d; char c; while…… 题解列表 2024年08月04日 0 点赞 0 评论 232 浏览 评分:0.0
不难,但有点繁琐 摘要:#include<bits/stdc++.h> using namespace std; int main() { char c[20]; cin>>c; int sum=0; …… 题解列表 2024年08月04日 0 点赞 0 评论 180 浏览 评分:0.0
2020: 快速排序练习 摘要:```cpp #include using namespace std; int n; int kspx(int a[]){ sort(a,a+n); for(int i=0;i…… 题解列表 2024年08月03日 0 点赞 0 评论 181 浏览 评分:0.0
1756: 整数奇偶排序 摘要:```cpp #include using namespace std; int px(long long a[]){ int j[10],o[10],x=0,y=0; for(int …… 题解列表 2024年08月03日 0 点赞 0 评论 217 浏览 评分:0.0
1169: 绝对值排序 摘要:```cpp #include using namespace std; bool cmp(int x,int y){ return abs(x)>abs(y); } int px…… 题解列表 2024年08月01日 0 点赞 0 评论 199 浏览 评分:0.0
1129: C语言训练-排序问题(2) 摘要:```cpp #include using namespace std; int px(int a[]){ for(int i=0;i>a[i]; sort(a,a+10); for…… 题解列表 2024年08月01日 0 点赞 0 评论 210 浏览 评分:0.0
1128: C语言训练-排序问题(1) 摘要:```cpp #include using namespace std; int px(int a[]){ for(int i=0;i>a[i]; sort(a,a+4); for(…… 题解列表 2024年08月01日 0 点赞 0 评论 414 浏览 评分:9.9