题解 | #字符逆序#

字符逆序

https://www.nowcoder.com/practice/cc57022cb4194697ac30bcb566aeb47b

import java.util.Scanner;

/**
 * 字符逆序
 * I am a student
 */
public class StringReverse {
    
    public static void main(String[] args) {
        Scanner scanner = new Scanner(System.in);
        while (scanner.hasNext()) {
            String nextLine = scanner.nextLine();
            char[] charArray = nextLine.toCharArray();
            for (int i = nextLine.length() - 1; i >= 0; i--) {
                System.out.print(charArray[i]);
            }
            System.out.println();
        }
    }
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 04:26
小红书 内容风控工程 (n+3) * 16 硕士985
点赞 评论 收藏
分享
爱吃烤肠的牛油最喜欢...:50K是ssp了估计,ssp的人家多厉害都不用说,每年比例大概在百分之5左右
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务