最简最易代码,一看就会 摘要:```java import java.util.*; public class Main { public static void main(String[] args) { …… 题解列表 2021年05月31日 0 点赞 1 评论 121 浏览 评分:6.0
最长单词 保证AC 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ string s,s1[100000]; ge…… 题解列表 2023年08月04日 0 点赞 0 评论 101 浏览 评分:6.0
91分代码求纠错(C++代码) 摘要:解题思路: 注意事项:参考代码:#include <iostream> using namespace std; int main() { string str…… 题解列表 2021年02月08日 0 点赞 0 评论 244 浏览 评分:6.0
蓝桥杯算法提高VIP-最长单词-题解(C++代码)超短代码! 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h> using namespace std; int main() { string str, ans; i…… 题解列表 2020年08月25日 0 点赞 0 评论 431 浏览 评分:4.7
最长单词 (Java代码) 摘要:解题思路:注意事项:参考代码:import java.util.Scanner; public class T1536 { public static void main(String[] ar…… 题解列表 2018年12月24日 0 点赞 0 评论 399 浏览 评分:4.0
编写题解 1536: 蓝桥杯算法提高VIP-最长单词 摘要:解题思路:注意事项:按空格分割为多个字符串,在比较每个字符串的长度。参考代码:#include<stdio.h>#include<string.h>void max(char* p, char sz[…… 题解列表 2024年03月30日 0 点赞 0 评论 289 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>char s[200000],c,max[200000],p[200000];int main(){…… 题解列表 2019年03月19日 0 点赞 0 评论 342 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C语言代码) 摘要:#include "stdafx.h"#include "string.h"int main(){ int i,j=0, c1 = 0,c2=0; char str[100000] = { 0 }, …… 题解列表 2018年10月29日 1 点赞 0 评论 358 浏览 评分:0.0
蓝桥杯算法提高VIP-最长单词 (C++代码) 摘要:解题思路:注意事项:参考代码:#include <deque>#include <algorithm>#include <iostream>#include <cstdlib>#include <it…… 题解列表 2018年01月19日 0 点赞 0 评论 572 浏览 评分:0.0
就几行代码 摘要:解题思路:每次输入新串和之前的最长串比较,如果比之前的串长则替换进a中,直到所有串输入完毕,然后将a中最长串输出就行。注意事项:参考代码:#include<iostream>using namespa…… 题解列表 2021年11月30日 0 点赞 0 评论 169 浏览 评分:0.0