renze
发表于 2018-3-7 10:26:19
package stage_0;
public class reverse {
public static void main(String[] args) {
StringBuffer a = new StringBuffer(" tset a si sihT");
reverse c = new reverse();
c.pig(a);
}
public void pig(StringBuffer a) {
StringBuffer b = new StringBuffer();
for (int i = 0; i < a.length(); i++) {
b.insert(0, a.charAt(i));
}
System.out.println(b);
}
}
pyt1
发表于 2018-8-24 14:43:53
看下
凯哥我点了你呢
发表于 2018-9-1 13:15:25
1
凯哥我点了你呢
发表于 2018-9-10 19:38:26
public class Test {
public static void main(String[] args) {
StringBuffer test=new StringBuffer("This is a test");
test.reverse();
System.out.println(test);
}
}
可以不
liujian9453
发表于 2018-9-11 09:12:43
看看怎么做
阿磕磕
发表于 2018-9-11 22:13:09
1
一只小白同学
发表于 2018-9-17 18:58:01
666
大板牙o
发表于 2018-9-19 09:50:59
哈哈哈 路过瞅瞅
輪HUI
发表于 2018-9-20 09:28:59
谢谢
scxy1230
发表于 2018-9-25 11:25:33
public class Str {
public static void main(String[] args) {
String a ="This is a test";
char [] b = a.toCharArray();
for(int i=b.length-1;i>=0;i--) {
System.out.print(b);
}
}
}
blackroot
发表于 2018-9-25 13:50:49
本帖最后由 blackroot 于 2018-9-25 13:57 编辑
cnkizy 发表于 2017-5-6 12:35
直接用Stack啊,或者一个for倒序输出也可以啊,for(int i=txt.length-1;i>=0;i--)print(txt.charAt(i));
字符串没有length属性,只有length().
blackroot
发表于 2018-9-25 13:58:18
cnkizy 发表于 2017-5-6 12:35
直接用Stack啊,或者一个for倒序输出也可以啊,for(int i=txt.length-1;i>=0;i--)print(txt.charAt(i));
字符串没有length,只有length()
blackroot
发表于 2018-9-25 14:07:13
public class TestStr{
public static void main(String arg[]){
String str = "this is a test";
StringBuffer sb = new StringBuffer(str);
sb.reverse();
System.out.print(sb);
}
}
gyq960911
发表于 2018-10-3 20:25:24
6666
lyslyslys
发表于 2018-10-11 21:13:50
学习学习
122815306
发表于 2018-10-25 17:30:45
public class Test1{
public static void main(String []args) {
StringBuffer a = new StringBuffer("This is a test");
StringBuffer b = a.reverse();
System.out.println(b);
}
}
122815306
发表于 2018-10-25 20:09:49
public class Test1{
public static void main(String []args) {
String s = "This is a test";
for(int i=s.length()-1;i>=0;i--) {
System.out.print(s.charAt(i));
}
}
}
凛冬
发表于 2018-10-27 09:26:35
StringBuffer str1 = new StringBuffer("This is a text");
str1.reverse();
System.out.println(str1);
还是不习惯
发表于 2018-10-31 16:03:04
asdad a
Supermagua
发表于 2019-3-29 15:21:42
6666