概述
解题思路:这是一道水题,只需记录数字“1”所在的二维坐标,进行与坐标(3,3)的之差绝对值计算即可。
提醒:注意循环一开始,所定义的 i=0 还是 i=1
以下是解题源代码(java实现)
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner = new Scanner(System.in);
int[][] number = new int[5][5];
int r = 0;
int l = 0;
for(int i = 0;i < 5;i++){
for (int j = 0; j < 5; j++) {
number[i][j] = scanner.nextInt();
if(number[i][j] == 1){
r = i;
l = j;
}
}
}
System.out.println(Math.abs(r-2) + Math.abs(l-2));
}
}
最后
以上就是笑点低睫毛膏为你收集整理的Codeforces刷题之路——263A Beautiful Matrix的全部内容,希望文章能够帮你解决Codeforces刷题之路——263A Beautiful Matrix所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复