想吃火锅的猪猪是我的神
想吃火锅的猪猪是我的神
全部文章
题解
归档
标签
去牛客网
登录
/
注册
想吃火锅的猪猪是我的神的博客
一名自学无术的菜鸡的自学之路
全部文章
/ 题解
(共3篇)
题解 | #MP3光标位置##if else套娃模式#
#include<stdio.h> int main() { int n; scanf("%d",&n); char str[100]; scanf("%s",str); int cursor=1; if(n<=4)//判断n...
C
字符串
数组
2022-03-22
9
544
题解 | #密码截取##中心扩展法#
#include<stdio.h> int main() { char str[2500]; gets(str); int len = strlen(str); int max=1; int count = 0,k=0; for(int i...
C
字符串
2022-03-21
3
539
题解 | #字符串排序###感觉是一个非常弱智的写法##浪费内存效率低#
#include<stdio.h> #include<string.h> #define N 1000 #include<stdbool.h> bool judgesym(char c) { if (c >= 'a'&&c <= 'z...
C
字符串
2022-03-20
0
335