淘淘的名单 (C语言代码)答案错误??? 摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <stdlib.h>#include <string.h>int main(){ int i,n; char str…… 题解列表 2017年09月14日 0 点赞 1 评论 656 浏览 评分:2.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(){ char a[100000][5]; int n,i; …… 题解列表 2017年10月22日 1 点赞 1 评论 1404 浏览 评分:7.3
淘淘的名单 (C语言代码) 摘要:#include<stdio.h> #include <string.h> int main() { int n,i; char a[10000][5]; …… 题解列表 2017年12月09日 1 点赞 0 评论 952 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单 (C语言代码) 摘要:解题思路: 首先,先建变量N,储存数量,再建字符串数组namelist储存名单,输入N,再用for循环输入数据,最后只需要用for循环轮流判断是否相等,根据判断输出.注意事项: strin…… 题解列表 2018年08月13日 0 点赞 0 评论 515 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>void print_str(char str []){ if(strcmp(str, "WY…… 题解列表 2018年10月12日 4 点赞 0 评论 2091 浏览 评分:9.9
蓝桥杯算法提高VIP-淘淘的名单-题解(C语言代码) 摘要: #include "stdio.h" #include "string.h" int main() { int N,i,j; char a[5]; scanf("%d"…… 题解列表 2020年02月10日 0 点赞 0 评论 317 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单-题解(Python代码) 摘要: python def Name_List(): name_list_length = int(input()) s_name_new = '' …… 题解列表 2020年02月13日 0 点赞 0 评论 513 浏览 评分:7.3
蓝桥杯算法提高VIP-淘淘的名单-题解(C语言代码) 摘要:## 解题思路: 本题是控制输入输出的格式,一一对应的,利用字符串的比较函数strcmp,对比字符串的内容,两个字符串大小相等,返回0,输出目标的值,初始化输出的形式为字符串个数,字符串个数输入后即…… 题解列表 2020年07月06日 0 点赞 0 评论 353 浏览 评分: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