题解 | #多组_带空格的字符串_T组形式#

多组_带空格的字符串_T组形式

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

import java.util.Scanner;

// 注意类名必须为 Main, 不要有任何 package xxx 信息
public class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        // 注意 hasNext 和 hasNextLine 的区别
        int t = in.nextInt();
        
        for(int i = 0;i < t; i++){
            int num = in.nextInt();
		    //注意:::用nextLine()进行换行,默认到下一个Enter下
            in.nextLine();
            String str = in.nextLine().replaceAll(" ","");
            // System.out.println(str);
            System.out.println(new StringBuffer(str).reverse().toString()); 
        }
    }
}

全部评论

相关推荐

点赞 评论 收藏
分享
02-22 21:16
已编辑
门头沟学院 运营
牛客928043833号:离了你谁还拿我当个宝
点赞 评论 收藏
分享
评论
3
收藏
分享

创作者周榜

更多
牛客网
牛客企业服务