码迷,mamicode.com
首页 > 其他好文 > 详细

字符串反转变形(asd zxc qwe -> qwe zxc asd)

时间:2019-09-14 22:29:35      阅读:142      评论:0      收藏:0      [点我收藏+]

标签:rev   ret   class   反转   length   变形   div   字符   color   

1 public String reverse(String str){
2     String s = "";
3     String[] strings = str.split(" ");
4     for (int i = strings.length - 1; i > 0 && i<strings.length ; i--) {
5         s = strings[i] + " ";
6     }
7     return s;
8 }

asd zxc qwe -> qwe zxc asd

字符串反转变形(asd zxc qwe -> qwe zxc asd)

标签:rev   ret   class   反转   length   变形   div   字符   color   

原文地址:https://www.cnblogs.com/carry6/p/11520312.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!