在键盘上输入一串字符,反转拼接字符串输出例如输入“abc”,输出“cba”。
package Example;
import ;
public class java_02 {
public static void main(String[] args) {
("输入字符串:");
Scanner sc=new Scanner();
String s=() ;
String s1=fanzhuang(s);
("s:"+s1);
}
public static String fanzhuang(String s){
String s2="";
int i=();
for(int x=i -1;x>=0 ;x--){
s2+=(x);
}
return s2;
}
}
运行结果:
输入字符串:
abc
s:cba
Process finished with exit code 0