来泡池子了的西红柿很奔放
来泡池子了的西红柿很奔放
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来泡池子了的西红柿很奔放的博客
全部文章
(共204篇)
题解 | #汽水瓶#
#include <stdio.h> int main() { int n; while (scanf("%d", &n) != EOF) { if(n == 0) return 0; int numofsod...
2024-10-30
0
16
题解 | #简单密码#
#include <stdio.h> #include <string.h> #include <ctype.h> int main() { char input[100]; scanf("%s", input); i...
2024-10-30
0
16
题解 | #密码验证合格程序#
#include <stdio.h> #include <string.h> #include <ctype.h> int validatePassword(char *input){ int len = strlen(input); if (l...
2024-10-30
0
18
题解 | #简单错误记录#
#include <stdio.h> #include <string.h> char* getFilename(const char *path) { int len = strlen(path); for(int i = len; i > 0; i...
2024-10-30
0
17
题解 | #字符串反转#
#include <stdio.h> #include <string.h> int main() { char input[1002]; scanf("%1001s",input); int len = strlen(input...
2024-10-27
0
20
题解 | #字符个数统计#
#include <stdio.h> #include <string.h> int countChar(char *s){ int marked[128] = {0}; int c = 0; int l = strlen(s); for (...
2024-10-27
0
21
题解 | #数字颠倒#
#include <stdio.h> int main() { int n; scanf("%d", &n); char s[31]; int index = 0; if(n == 0){ s[inde...
2024-10-27
0
24
题解 | #合并表记录#
#include <stdio.h> #include <stdlib.h> typedef struct HashNode { int index; int value; struct HashNode *next; } HashNode; in...
2024-10-27
0
18
题解 | #取近似值#
#include <stdio.h> int main(void){ float fudian; while(scanf("%f", &fudian) != EOF){ int result = (int)fudian; ...
2024-10-26
0
18
题解 | #质数因子#
#include <stdio.h> #include <math.h> int main() { long input; while (scanf("%ld", &input) != EOF) { if (inp...
2024-10-26
0
43
首页
上一页
12
13
14
15
16
17
18
19
20
21
下一页
末页