蓝桥杯算法提高VIP-字符串比较 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> #include<string> using namespace std; int main() { string s…… 题解列表 2018年06月11日 0 点赞 0 评论 593 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路: 自己写一个mystrcmp函数实现strcmp函数的功能。参考代码:#include <stdio.h> int mystrcmp(char s1[],char s2[]) { …… 题解列表 2018年09月09日 1 点赞 0 评论 759 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:#include<stdio.h>#include<string.h>int main(){ char a[100],b[100]; int i,m,n; scanf("%s %s",a,b); m=…… 题解列表 2019年02月14日 0 点赞 0 评论 568 浏览 评分:0.0
。。提点小问题。。:蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:用strcmp字符串比较函数来比较。不能用gets输入,要用%s来输入。因为两个字符串之间是空格隔开的。#include<stdio.h> #include<string.h> int…… 题解列表 2019年02月21日 1 点赞 0 评论 729 浏览 评分:9.0
蓝桥杯算法提高VIP-字符串比较 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main {public static void main(String[] args) { …… 题解列表 2019年03月09日 0 点赞 0 评论 388 浏览 评分:0.0
蓝桥杯算法提高VIP-字符串比较 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int strcmp(char w[],char n[]);int main(){ char w[100]; char …… 题解列表 2019年03月22日 0 点赞 0 评论 614 浏览 评分: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 评论 418 浏览 评分: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 评论 406 浏览 评分:0.0
蓝桥杯算法提高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 评论 377 浏览 评分:0.0
蓝桥杯算法提高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 评论 1229 浏览 评分:9.4