马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
package lianxi1;
import java.util.Scanner;
public class studenttest {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner sc=new Scanner(System.in);
System.out.println("请输入一个字符串");
String line=sc.nextLine();
String s=reverse(line);
System.out.println(s);
}
public static String reverse(String s) {
String ss="";
for(int i=s.length()-1;i>=0;i--) {
ss +=s.charAt(i);
}
return ss;
}
}
for循环 s.length()为什么还要-1
因为s.length()代表s字符串得长度
减1得话就是最后一个字符得下标了
从最后一个字符的下标开始向前循环
|