1543: 蓝桥杯算法提高VIP-淘淘的名单
摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <string.h>#define LEN 10000// 淘淘拿到了一份名单,他想对上面的名字进行处理,挑出一些特……
蓝桥杯算法提高VIP-淘淘的名单-题解(Java代码)(数据约束版)
摘要: Scanner scanner=new Scanner(System.in);
int length=scanner.nextInt();
//数据规模与约定,超出则结束。……
蓝桥杯算法提高VIP-淘淘的名单-题解(C语言代码)
摘要:## 解题思路:
本题是控制输入输出的格式,一一对应的,利用字符串的比较函数strcmp,对比字符串的内容,两个字符串大小相等,返回0,输出目标的值,初始化输出的形式为字符串个数,字符串个数输入后即……
蓝桥杯算法提高VIP-淘淘的名单-题解(Java代码)
摘要:解题思路:注意事项:参考代码:import java.util.Scanner;public class Main { public static void main(String[] args){ ……
蓝桥杯算法提高VIP-淘淘的名单-题解(C++代码)
摘要:```cpp
#include
#include
using namespace std;
int main()
{
int N;
cin>>N;
strin……
蓝桥杯算法提高VIP-淘淘的名单-题解(C++代码)
摘要:```cpp
#include
#include
using namespace std;
int main(){
int n;
cin>>n;
string ……
蓝桥杯算法提高VIP-淘淘的名单-题解(C语言代码)
摘要: #include "stdio.h"
#include "string.h"
int main()
{
int N,i,j;
char a[5];
scanf("%d"……
蓝桥杯算法提高VIP-淘淘的名单 (C语言代码)
摘要:解题思路: 首先,先建变量N,储存数量,再建字符串数组namelist储存名单,输入N,再用for循环输入数据,最后只需要用for循环轮流判断是否相等,根据判断输出.注意事项: strin……
蓝桥杯算法提高VIP-淘淘的名单 (C++代码)
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
string str[10001];
string f(string s)
{
……