来泡池子了的西红柿很奔放
来泡池子了的西红柿很奔放
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来泡池子了的西红柿很奔放的博客
全部文章
(共205篇)
题解 | #字符串加密#
#include <stdio.h> #include <string.h> #include <stdlib.h> int main() { char key[101]; char plaintext[101]; // 首先读取数据 ...
2024-11-02
0
74
题解 | #图片整理#
#include <stdio.h> #include <stdlib.h> #include <string.h> int compare(const void *a, const void *b) { return *(char *)a - *(cha...
2024-11-02
0
38
题解 | #整数与IP地址间的转换#
#include <stdio.h> int main() { unsigned int ip1, ip2, ip3, ip4, num; while (scanf("%d.%d.%d.%d", &ip1, &ip2, &ip...
2024-11-02
0
55
题解 | #密码截取#
#include <math.h> #include <stdio.h> #include <string.h> int main() { char input[2501]; while (scanf("%s", input)...
2024-11-01
0
36
题解 | #单词倒排#
#include <stdio.h> #include <string.h> #include <ctype.h> int main() { char input[10001]; while(fgets(input, sizeof(input), ...
2024-11-01
0
58
题解 | #字符串合并处理#
#include <stdio.h> #include <string.h> void stepthree(char *c) { int num; if(*c >= '0' && *c <= '9') { num =...
2024-11-01
0
52
题解 | #字符串加解密#
#include <stdio.h> #include <ctype.h> #include <string.h> #include <stdlib.h> char *encode(char *e, int len); char *decode(cha...
2024-11-01
0
29
题解 | #查找兄弟单词#
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <ctype.h> int compare(const void *a, const void *b) { ...
2024-11-01
0
42
题解 | #字符串排序#
#include <stdio.h> #include <ctype.h> #include <string.h> int main() { char str[1001]; fgets(str, sizeof(str), stdin); ...
2024-11-01
0
46
题解 | #数据分类处理#
#include <stdio.h> #include <stdlib.h> // 比较函数,用于 qsort int compare(const void* a, const void* b) { return *(int*)a - *(int*)b; } //...
2024-10-31
0
61
首页
上一页
12
13
14
15
16
17
18
19
20
21
下一页
末页