for循环和while循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<ctype.h>int main(){ char x[1000]; char s[…… 题解列表 2024年12月22日 0 点赞 0 评论 86 浏览 评分:0.0
2868: 最长最短单词 摘要:解题思路:注意事项:参考代码:l = list(input().split())a = max(l,key=len)b = min(l,key=len)print(a)print(b)…… 题解列表 2024年08月02日 0 点赞 0 评论 77 浏览 评分:0.0
输入1行句子(不多于200个单词,每个单词长度不超过100),包含字母、空格、逗号、引号等。单词由至少一个连续的字母构成,空格和逗号都是单词间的间隔。 试输出第1个最长的单词和第1个最短单词。 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int i,j,len,maxlen=-1,minlen=1000,m…… 题解列表 2024年05月09日 0 点赞 0 评论 408 浏览 评分:9.9
很笨的方法,能通过就行,哈哈哈哈哈 摘要:#include<bits/stdc++.h>using namespace std;int main(){ string s; getline(cin,s); vector<pai…… 题解列表 2024年04月05日 0 点赞 1 评论 56 浏览 评分:9.9
2868: 最长最短单词 摘要:解题思路:注意事项:参考代码:s = input().split() s1 = [len(i) for i in s] max = max(s1) min = min(s1) for i in…… 题解列表 2024年03月25日 0 点赞 0 评论 169 浏览 评分:4.0
最长最短单词 摘要:解题思路:注意事项:参考代码:sentence = input().split() # 分割输入的句子为单词列表longest_word = max(sentence, key=len) # 找到…… 题解列表 2024年02月21日 0 点赞 2 评论 155 浏览 评分:9.9
编写题解 2868: 最长最短单词 摘要:解题思路:注意事项:参考代码:package arrLast; //题目 2868: 最长最短单词 import java.util.Scanner; public class t_2868 {…… 题解列表 2024年02月16日 0 点赞 0 评论 59 浏览 评分:0.0
正则表达式--study||O.o 摘要:参考代码:import java.util.Scanner; import java.util.regex.Matcher; import java.util.regex.Pattern; …… 题解列表 2024年02月04日 0 点赞 0 评论 74 浏览 评分:9.9
最长最短单词(用二维数组存储,把每个单词分隔开来,就好做多了) 摘要:参考代码: ```c #include #include int main() { char a[201][101]; int k=0; int max=0,max_index=…… 题解列表 2023年12月20日 0 点赞 0 评论 108 浏览 评分:9.9
最长最短单词 摘要:解题思路:注意事项:参考代码:myList=input().split()mydict= {}newList=[]for temp in myList: newList.append(len(t…… 题解列表 2023年12月20日 0 点赞 0 评论 160 浏览 评分:2.0