1.7 编程基础之字符串 27 单词翻转 4分 python
生活随笔
收集整理的這篇文章主要介紹了
1.7 编程基础之字符串 27 单词翻转 4分 python
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
"""
1.7 編程基礎之字符串 27 單詞翻轉 4分
http://noi.openjudge.cn/ch0107/24/
https://blog.csdn.net/hy_696/article/details/106412888
https://blog.csdn.net/m0_43456002/article/details/102729230LeetCode--最后一個單詞的長度(python版)
https://www.jianshu.com/p/e45152efc507python反轉list的三種方法
https://blog.csdn.net/qq_37969201/article/details/80406726"""
a=input().split()
a=list(a)
lena=len(a)
i=0
while i<lena-1:#print(str(list(reversed(a[i])))+",",end=' ')print( str(a[i][: :-1]),end=' ')i+=1print( str(a[lena-1][: :-1]))
C++代碼:
/* 1.7編程基礎之字符串_27單詞翻轉04 http://noi.openjudge.cn/ch0107/27/ */ #include<iostream> #include<cstring> #include<string> using namespace std;string a;void Reverse(int lft,int r) {char x;for(int i=lft,j=r;i<j;i++,j--){x=a[i];a[i]=a[j];a[j]=x;} }int main() {int n,i;getline(cin,a);int lena=0;for(i=0;i<a.length();i++){if(a[i]==' '){Reverse(lena,i-1);lena=i+1; }if(i==a.length()-1){Reverse(lena,i);lena=i+1;}}cout<<a<<endl;return 0; }總結
以上是生活随笔為你收集整理的1.7 编程基础之字符串 27 单词翻转 4分 python的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 【去重】php正则过滤字符串中多次重复出
- 下一篇: 第62课 捉迷藏 《小学生C++趣味编程