牛客830289240号
牛客830289240号
全部文章
分类
题解(1)
归档
标签
去牛客网
登录
/
注册
牛客830289240号的博客
全部文章
(共25篇)
题解 | #字符串反转#
#include <stdio.h> #include <string.h> int main() { char str[1002]; while (scanf("%s", str) != EOF) { // 注意 while 处理多个 case ...
2023-04-12
0
213
题解 | #质数因子#
#include <stdio.h> int main() { int a; scanf("%d", &a); int i; for (i = 2; i * i <= a; i++) { while (a % i == 0...
2023-04-10
0
176
题解 | #判断链表中是否有环#
#include <stdbool.h> /** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param head ListNode类 * @return bool...
2023-04-05
0
148
题解 | #合并两个排序的链表#
/** * struct ListNode { * int val; * struct ListNode *next; * }; */ /** * * @param pHead1 ListNode类 * @param pHead2 ListNode类 * @return L...
2023-03-31
0
174
题解 | #密码验证合格程序#
#include <stdio.h> int main() { char a[100]; while (scanf("%s", a) != EOF) { int num, i, j, x=0, y=0, z=0, w=0, cnt = 0, flag =...
2023-03-31
0
211
题解 | #字符串排序#
#include <stdio.h> #include <string.h> char str2pos(char s) { if(s >= 'a' && s <= 'z') { return s - 'a'; } ...
2023-03-31
0
222
题解 | #数字颠倒#
#include <stdio.h> #include <stdlib.h> int main() { char *s; s = malloc(100); int i = 0; while ((s[i++] = getchar()) != E...
2023-03-29
0
159
题解 | #字符个数统计#
#include <stdio.h> int main() { char s[500], asc[128] = {0}, sum = 0; while (scanf("%s", &s) != EOF) { // 注意 while 处理多个 case //...
2023-03-28
0
220
题解 | #提取不重复的整数#
#include <stdio.h> #include <string.h> int main() { char s[10]; char n = 0; scanf("%s", s); n = strlen(s); for(int i ...
2023-03-17
0
180
题解 | #提取不重复的整数#
#include <stdio.h> #include <string.h> int main() { char s[10]; unsigned long n = 0; while (scanf("%s", s) != EOF) { // 注意 wh...
2023-03-17
0
183
首页
上一页
1
2
3
下一页
末页