蓝桥杯算法提高VIP-淘淘的名单-题解(C语言代码) 摘要:## 解题思路: 本题是控制输入输出的格式,一一对应的,利用字符串的比较函数strcmp,对比字符串的内容,两个字符串大小相等,返回0,输出目标的值,初始化输出的形式为字符串个数,字符串个数输入后即…… 题解列表 2020年07月06日 0 点赞 0 评论 353 浏览 评分:0.0
小白也能看懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n; scanf("%d",&n); char arr[5000…… 题解列表 2024年04月01日 0 点赞 0 评论 102 浏览 评分:0.0
淘淘的名单 (C语言代码) 摘要:#include <stdio.h>#include <string.h>int main(){ char str[5];//最大长度5 int n; scanf("%d",&n);//输入n次 wh…… 题解列表 2017年09月27日 2 点赞 0 评论 1244 浏览 评分:0.0
淘淘的名单 (C语言代码) 摘要:#include<stdio.h> #include <string.h> int main() { int n,i; char a[10000][5]; …… 题解列表 2017年12月09日 1 点赞 0 评论 952 浏览 评分:0.0
C++ :蓝桥杯算法提高VIP-淘淘的名单 摘要:# C++ `string` || 选择结构 ```c++ #include #include #include #include #include #include #i…… 题解列表 2023年06月26日 0 点赞 0 评论 156 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单(分别用两个字符数组存题目给的要比对的字符串) 摘要:参考代码: ```c #include #include int main() { int n; scanf("%d",&n); char a[7][100]={"WYS","C…… 题解列表 2023年11月03日 0 点赞 0 评论 86 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单-题解(C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<string.h> int judge(char ch[10]){ char ch1[]="WYS"; …… 题解列表 2020年10月02日 0 点赞 0 评论 276 浏览 评分:0.0
1543: 蓝桥杯算法提高VIP-淘淘的名单 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define LEN 10000// 淘淘拿到了一份名单,他想对上面的名字进行处理,挑出一些特…… 题解列表 2021年03月03日 0 点赞 0 评论 172 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单 (C语言代码) 摘要:解题思路: 首先,先建变量N,储存数量,再建字符串数组namelist储存名单,输入N,再用for循环输入数据,最后只需要用for循环轮流判断是否相等,根据判断输出.注意事项: strin…… 题解列表 2018年08月13日 0 点赞 0 评论 515 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[6]; int n; scanf("%d…… 题解列表 2023年07月12日 0 点赞 0 评论 82 浏览 评分:0.0