来泡池子了的西红柿很奔放
来泡池子了的西红柿很奔放
全部文章
分类
归档
标签
去牛客网
登录
/
注册
来泡池子了的西红柿很奔放的博客
全部文章
(共204篇)
题解 | #数组分组#
#include <stdio.h> #include <stdbool.h> bool solution(int arr5, int arr3, int val[], int total, int index) { if(index == total){ ...
2024-11-08
0
13
题解 | #在字符串中找出连续最长的数字串#
#include <ctype.h> #include <stdio.h> #include <string.h> int main() { char input[200]; while (scanf("%s", input) ...
2024-11-08
0
20
题解 | #24点运算#
#include <stdio.h> #include <stdbool.h> #include <string.h> char sign[3]; int num[4]; int sum = 0; int left = 4; // 判断是否可以通过某种运算组合...
2024-11-07
0
15
题解 | #走方格的方案数#
#include <stdio.h> int main() { int n, m; while (scanf("%d %d", &n, &m) != EOF) { int dp[8][8]; for(i...
2024-11-07
0
11
题解 | #合法IP#
#include <stdio.h> #include <stdbool.h> #include <ctype.h> bool valid(int i) { if(i >= 0 && i <= 255) return true;...
2024-11-07
0
15
题解 | #扑克牌大小#
#include <stdio.h> #define MAX 5 int main() { int A[MAX] = {0}, B[MAX] = {0}; int numA = 0, numB = 0; char input[30], cardA[15], car...
2024-11-07
0
17
题解 | #密码强度等级#
#include <stdio.h> #include <string.h> #include <stdbool.h> #include <ctype.h> #define LEN 300 int main() { char password...
2024-11-07
0
16
题解 | #求最大连续bit数#
#include <stdio.h> int main() { int n, count, maxcount = 0; while (scanf("%d", &n) != EOF) { // printf("the ...
2024-11-07
0
15
题解 | #最长回文子串#
#include <stdio.h> #include <string.h> #define LEN 350 int main() { char s[LEN]; while (scanf("%s", s) != EOF) { ...
2024-11-07
0
15
题解 | #统计大写字母个数#
#include <stdio.h> #include <ctype.h> #define LEN 250 int main() { char s[LEN]; while (fgets(s, sizeof(s), stdin) != NULL) { ...
2024-11-07
0
16
首页
上一页
9
10
11
12
13
14
15
16
17
18
下一页
末页