蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:#include<stdio.h>#include<string.h> int main(){ int k; char a[100],b[100]; scanf("%s %s",a,b); k=s…… 题解列表 2019年04月13日 0 点赞 0 评论 332 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较-题解(C语言代码) 摘要: #include int f(char *s1, char *s2) { int i = 0; for (i = 0; s1[i]!=…… 题解列表 2020年03月17日 0 点赞 0 评论 274 浏览 评分:0.0
1516: 蓝桥杯算法提高VIP-字符串比较 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#define LEN 100int mystrcmp(char *str1,char *str2) { for(int i=0; s…… 题解列表 2021年03月03日 0 点赞 0 评论 123 浏览 评分:0.0