1.7 编程基础之字符串 25 最长最短单词 python
生活随笔
收集整理的這篇文章主要介紹了
1.7 编程基础之字符串 25 最长最短单词 python
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
"""
1.7 編程基礎之字符串 25 最長最短單詞
http://noi.openjudge.cn/ch0107/25/
https://blog.csdn.net/hy_696/article/details/106412888
https://blog.csdn.net/m0_43456002/article/details/102729230LeetCode--最后一個單詞的長度(python版)
https://www.jianshu.com/p/e45152efc507"""
a=input().split()a=list(a)lena=len(a)i=0max=0min=99999while i<lena:num=len(a[i])if max<num:max=numflagmax=iif min>num:min=numflagmin=ii+=1print(a[flagmax])print(a[flagmin])
C++代碼:
/* 1.7編程基礎之字符串_25最長最短單詞01 http://noi.openjudge.cn/ch0107/25/ */ #include<iostream> #include<cstring> using namespace std;char c[101],a[101]={0},b[101]={0}; int l1=0,l2=101;int main() {while(cin>>c){if(strlen(c)>l1){strcpy(a,c);l1=strlen(a);}if(strlen(c)<l2){strcpy(b,c);l2=strlen(b);}}cout<<a<<endl<<b;return 0; }總結
以上是生活随笔為你收集整理的1.7 编程基础之字符串 25 最长最短单词 python的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 第4课 列朋波骨《小学生C++趣味编程》
- 下一篇: 1.9 编程基础之顺序查找 01 查找特