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

字符串反写(学习)

时间:2017-03-09 18:36:19      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:for   学习   void   方法   字符串   main   ati   rgs   bsp   

今天想起了之前的一个问题,反写字符串的方法。

 

public class shouxie {
public static void main(String[] args) {
String str = "abcdefghijklmnopqrstuvwxyz";
int length = str.length();
char[] chars = str.toCharArray();
for(int i = 0 ; i < length / 2 ; i ++){
char temp;
temp = chars[i];
chars[i] = chars[length - 1 -i];
chars[length -1 - i] = temp;
}
System.out.println(chars);
}
}

这样就可以了。

字符串反写(学习)

标签:for   学习   void   方法   字符串   main   ati   rgs   bsp   

原文地址:http://www.cnblogs.com/April-Chou-HelloWorld/p/6526953.html

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