花落的新手代码(C语言代码) 摘要:解题思路:只是调用strcmp函数。注意事项:strcmp(s1,s2);当s1<s2时,返回为负数;当s1==s2时,返回值= 0;当s1>s2时,返回正数。参考代码:#include<stdio.…… 题解列表 2017年12月25日 1 点赞 0 评论 870 浏览 评分:2.0
蓝桥杯算法提高VIP-字符串比较-题解(C++代码,作弊行为,大家不要学哈) 摘要:解题思路:不用strcmp,用string类也行啊,哈哈!!!注意事项:参考代码:#include<iostream> #include<string> using namespace std; …… 题解列表 2020年08月16日 0 点赞 0 评论 553 浏览 评分:4.0
蓝桥杯算法提高VIP-字符串比较-题解(Python代码)开荒柘 摘要:随便写写 ```python L=input().split() a=L[0] b=L[1] if a>b: print(1) elif a==b: print(0) else:…… 题解列表 2020年01月09日 0 点赞 0 评论 632 浏览 评分:5.3
WU-字符串比较 (C++代码) 摘要: 直接调用c++特性string 流来解决问题参考代码:#include<iostream> #include<cstring> using namespace std; int main()…… 题解列表 2017年12月07日 3 点赞 0 评论 919 浏览 评分:6.0
蓝桥杯算法提高VIP-字符串比较-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class Main { public static void main(String[…… 题解列表 2021年01月10日 0 点赞 1 评论 367 浏览 评分:7.3
字符串比较 (C语言代码) 摘要:#include <stdio.h> int mystrcmp(char * s1, char * s2); int main(void) { char s1[100], s2[100]; …… 题解列表 2017年12月14日 65 点赞 3 评论 1309 浏览 评分:8.9
。。提点小问题。。:蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:用strcmp字符串比较函数来比较。不能用gets输入,要用%s来输入。因为两个字符串之间是空格隔开的。#include<stdio.h> #include<string.h> int…… 题解列表 2019年02月21日 1 点赞 0 评论 636 浏览 评分:9.0
蓝桥杯算法提高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-字符串比较-题解(C语言代码) 摘要:```c #include //#include int main() { char a[100],b[100]; scanf("%s",a);scanf("%s",b); …… 题解列表 2019年12月11日 0 点赞 0 评论 642 浏览 评分:9.3
蓝桥杯算法提高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