Reverse a string in Java

前端 未结 30 2625
礼貌的吻别
礼貌的吻别 2020-11-21 13:12

I have \"Hello World\" kept in a String variable named hi.

I need to print it, but reversed.

How can I do this? I understand there

30条回答
  •  心在旅途
    2020-11-21 13:45

    This did the trick for me

    public static void main(String[] args) {
    
        String text = "abcdefghijklmnopqrstuvwxyz";
    
        for (int i = (text.length() - 1); i >= 0; i--) {
            System.out.print(text.charAt(i));
        }
    }
    

提交回复
热议问题