字符逆序

字符逆序

http://www.nowcoder.com/questionTerminal/cc57022cb4194697ac30bcb566aeb47b

StringBuilder.reverse方法

import java.util.*;

public class Main {

    private String reverse(String str) {
        StringBuilder res = new StringBuilder(str);
        return res.reverse().toString();
    }

    public Main() {
        Scanner in = new Scanner(System.in);
        while (in.hasNextLine()) {
            String str = in.nextLine();
            String res = reverse(str);
            System.out.println(res);
        }
   }

    public static void main(String[] args) 
    {
        Main solution = new Main();
    } 
}   
全部评论
String a = in.nextLine(); System.out.println(new StringBuffer(a).reverse());
1 回复 分享
发布于 2023-05-21 01:08 浙江
System.out.println(new StringBuilder(in.nextLine()).reverse());
点赞 回复 分享
发布于 2023-07-19 12:09 内蒙古

相关推荐

尊尼获获:闺蜜在哪?
点赞 评论 收藏
分享
18 收藏 评论
分享
牛客网
牛客企业服务