萧容鱼
萧容鱼
全部文章
分类
归档
标签
去牛客网
登录
/
注册
萧容鱼的博客
全部文章
(共4篇)
题解 | #兔子的序列#
#include <stdio.h> #include <stdlib.h> #include <math.h> int pd(const void* e1,const void* e2) { return (*(int*)e2-*(int*)e1); } ...
2024-03-03
1
152
题解 | #正方形图案#
#include <stdio.h> #include <string.h> int main() { int n = 0; while(scanf("%d",&n)==1)//输入需要几乘几的正方形 { cha...
2024-02-19
1
156
题解 | #反向输出一个四位数#
#include <stdio.h> #include <string.h> void change(char*arr) { int len = strlen(arr);//求字符串长度 for(int left = 0,right=len-1;left<r...
2024-02-17
1
140
题解 | #小乐乐改数字#
#include <stdio.h> int main() { long n = 0;//输入 scanf("%ld",&n); int num = 1;//保证为一位基数时对m进行更改 long m = 0;//最终数 ...
2024-02-06
1
149