H2230823083

这家伙很懒,什么也没写
文章
3
评论
0
加入时间
3年前
等级
排名
2512
学校
贺州大学

sort函数妙解数位排序

摘要:解题思路:在sort函数中添加优化的比较函数cmp注意事项:数组要比十万大一点参考代码:#include <iostream> #include<algorithm> using namespac……

字符串去掉空格

摘要:解题思路:注意事项:参考代码:#include<string.h>去掉空格int main(){ int i; int j = 4; int n; char arr[1000]; while (j) ……

日期非结构解法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n, y, r; int h; int i; int sum=0; scanf("%d%d%d", &n……