蓝桥杯算法提高VIP-淘淘的名单 摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp…… 题解列表 2022年05月19日 0 点赞 0 评论 188 浏览 评分:0.0
淘淘的名单(C++) 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int n=0; string a[1…… 题解列表 2023年01月24日 0 点赞 0 评论 157 浏览 评分:0.0
C++ :蓝桥杯算法提高VIP-淘淘的名单 摘要:# C++ `string` || 选择结构 ```c++ #include #include #include #include #include #include #i…… 题解列表 2023年06月26日 0 点赞 0 评论 234 浏览 评分:0.0
c语言代码解决问题 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[6]; int n; scanf("%d…… 题解列表 2023年07月12日 0 点赞 0 评论 189 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单(分别用两个字符数组存题目给的要比对的字符串) 摘要:参考代码: ```c #include #include int main() { int n; scanf("%d",&n); char a[7][100]={"WYS","C…… 题解列表 2023年11月03日 0 点赞 0 评论 158 浏览 评分:0.0
小白也能看懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,n; scanf("%d",&n); char arr[5000…… 题解列表 2024年04月01日 0 点赞 0 评论 208 浏览 评分:0.0
mp方法(sf12d) 摘要:解题思路:注意事项:容易超时参考代码:#include<bits/stdc++.h>using namespace std;int main(){ map<string,string…… 题解列表 2025年06月02日 0 点赞 0 评论 98 浏览 评分: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 评论 1364 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; string str[10001]; string f(string s) { …… 题解列表 2018年06月12日 0 点赞 0 评论 653 浏览 评分:0.0
蓝桥杯算法提高VIP-淘淘的名单 (C语言代码) 摘要:解题思路: 首先,先建变量N,储存数量,再建字符串数组namelist储存名单,输入N,再用for循环输入数据,最后只需要用for循环轮流判断是否相等,根据判断输出.注意事项: strin…… 题解列表 2018年08月13日 0 点赞 0 评论 727 浏览 评分:0.0