题解 | #矩阵元素定位#

矩阵元素定位

http://www.nowcoder.com/practice/b8e6a46992fe4e11b2822b20561b6d94

import java.util.Scanner;
public class Main{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        StringBuilder numStr = new StringBuilder();
//要用nextLine需要先把m后面的换行符读取
        sc.nextLine();
        for(int i = 0; i < n; i++){
            numStr.append(sc.nextLine());
            numStr.append(" ");
        }
        int x = sc.nextInt();
        int y = sc.nextInt();
        String str = new String(numStr);
        String[] nums = str.split(" ");
        System.out.println(nums[(x-1)*m+y-1]);
    }
}
全部评论

相关推荐

不愿透露姓名的神秘牛友
11-24 20:55
阿里国际 Java工程师 2.7k*16.0
程序员猪皮:没有超过3k的,不太好选。春招再看看
点赞 评论 收藏
分享
10-17 16:07
门头沟学院 Java
牛牛大你18号:在汇报,突然弹出来,,领导以为我在准备跳槽,刚从领导办公室谈心出来
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务