蓝桥杯算法提高VIP-字符串比较-题解(Python代码) 摘要:```python a,b = input().split()#输入 以空格切割分别赋值给a , b if a==b:#判断 print(0) elif a>b: prin…… 题解列表 2019年11月24日 0 点赞 1 评论 653 浏览 评分:9.0
蓝桥杯算法提高VIP-字符串比较-题解(Java代码) 摘要:直接上compareTo方法 如果结果小于0,就是-1 如果结果大于0,就是1 如果结果等于0,就是0 ```java Scanner sc=new Scanner(System.in); …… 题解列表 2019年10月23日 0 点赞 0 评论 704 浏览 评分:9.9
优质题解 蓝桥杯算法提高VIP-字符串比较-题解(C++代码) 摘要:#### 原题链接:[字符串比较](https://www.dotcpp.com/oj/problem.php?id=1516 "字符串比较") 独立实现标准字符串库的strcmp函数,即字符串…… 题解列表 2019年07月20日 0 点赞 0 评论 1354 浏览 评分:9.9
蓝桥杯算法提高VIP-字符串比较 (C语言代码)C语言版本的水文(o゚v゚)ノ 摘要:参考代码:#include<stdio.h> #include<string.h> #define maxn 10005 int main(){ char a[maxn],b[maxn]; …… 题解列表 2019年04月20日 1 点赞 2 评论 1041 浏览 评分:9.4
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int j,i,n; char a[100],b[100]; scanf("…… 题解列表 2019年04月14日 0 点赞 0 评论 240 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int k; char st1[100]; char st2[100]; s…… 题解列表 2019年04月14日 0 点赞 0 评论 275 浏览 评分:0.0
蓝桥杯算法提高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<stdio.h>int strcmp(char w[],char n[]);int main(){ char w[100]; char …… 题解列表 2019年03月22日 0 点赞 0 评论 318 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {public static void main(String[] args) { …… 题解列表 2019年03月09日 0 点赞 0 评论 321 浏览 评分:0.0
。。提点小问题。。:蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:用strcmp字符串比较函数来比较。不能用gets输入,要用%s来输入。因为两个字符串之间是空格隔开的。#include<stdio.h> #include<string.h> int…… 题解列表 2019年02月21日 1 点赞 0 评论 636 浏览 评分:9.0