来泡池子了的西红柿很奔放
来泡池子了的西红柿很奔放
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来泡池子了的西红柿很奔放的博客
全部文章
(共204篇)
题解 | #进制转换#
#include <stdio.h> #include <stdlib.h> int main() { char hexStr[11]; // 足够容纳 "0x" + 8 位十六进制数 + '\0' // 读取输入的十六进制数值字符串 ...
2024-10-26
0
25
题解 | #字符串分隔#
#include <stdio.h> //使用输入输出库,可以调用printf, scanf, putchar函数 #include <string.h> //使用字符串处理库,可以调用strlen和strcpy函数 int main() { //进入主程序 cha...
2024-10-25
0
19
题解 | #明明的随机数#
#include <stdio.h> //标准输入输出库用于调用我们的scanf和printf #include <stdlib.h> //包含了我们的qsort函数用于快速排序 int compare(const void* a, const void* b) { //定...
2024-10-25
1
37
题解 | #计算某字符出现次数#
#include <stdio.h> #include <string.h> #include <ctype.h> int main() { char str[1002];//首先定义一个字符数组str用来存储我们的输入字符串,长度为1002(因为字符串...
2024-10-25
0
36
首页
上一页
12
13
14
15
16
17
18
19
20
21
下一页
末页