A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

package com.sf;

import java.util.*;
public class test4 {
       
        public static void main(String[] args){
               
                System.out.println("请输入一个字符串");
               
                Scanner sc = new Scanner(System.in);
                String s  = sc.nextLine();
                s = reverse(s);
                System.out.println(s);
                sc.close();
               
        }
        private static String reverse(String s){
                //将字符串转成字符数组
                char[] ch = s.toCharArray();
                int x = 0;
                //把字符数组的首尾交换位置
                while(ch.length-x-1>=x){
                        swap(ch,ch.length-x-1,x);
                        x++;       
                }
                return new String(ch);
        }
        //交换位置
        private static void swap(char[] ch,int a,int b){
                        char temp = ch[b];
                        ch[b] = ch[a];
                        ch[a] = temp;
        }
               
}

0 个回复

您需要登录后才可以回帖 登录 | 加入黑马