蓝桥杯算法提高VIP-淘淘的名单(分别用两个字符数组存题目给的要比对的字符串)
摘要:参考代码:
```c
#include
#include
int main()
{
int n;
scanf("%d",&n);
char a[7][100]={"WYS","C……
C++ :蓝桥杯算法提高VIP-淘淘的名单
摘要:# C++ `string` || 选择结构
```c++
#include
#include
#include
#include
#include
#include
#i……
淘淘的名单(C++)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ int n=0; string a[1……
淘淘的名单-python-如何解决95%正确率
摘要:解题思路:思路很简单,就是判断,费点时间,但也没超时,不过刚开始的时候一直仅正确95%,找了半天剩下5%啥毛病注意事项:如果有5%的错误,那就是忘记删除输入的空格了参考代码:n=int(input()……
蓝桥杯算法提高VIP-淘淘的名单
摘要:解题思路:注意事项:参考代码://程序名:新的C++程序//作者: #include<iostream>#include<fstream>#include<algorithm>using namesp……
蓝桥杯算法提高VIP-淘淘的名单 题解(c++判断简单题)
摘要:解题思路:三步完事:输入,判断,输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;string s;int n;int main(){……
蓝桥杯算法提高VIP-淘淘的名单
摘要:解题思路:单独写一个方法输出注意事项:nextLine()和next()的区别,使用nextLine()会使空格占用一个字符数组1、一定要读取到有效字符后才可以结束输入。2、对输入有效字符之前遇到的空……
编写题解 1543: 蓝桥杯算法提高VIP-淘淘的名单
摘要:解题思路:列表和字典查询比较慢,可以直接if判断注意事项:参考代码:if查询
n=int(input())
for i in range(n):
k=input().strip()
……