参考代码:
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner scanner = new Scanner(System.in); int n = scanner.nextInt(); int [][]arr = new int[n][n]; for(int i = 0; i < n; i++) for(int j = 0; j < n; j++) arr[i][j] = scanner.nextInt(); int oddrow = 0;//记录和为奇数的行数 int row = 0;//记录和为奇数的行数的下标 for(int i = 0; i < n; i++) { int sum = 0; for(int j = 0; j < n; j++) { sum += arr[i][j]; } if(sum % 2 == 1) { oddrow++; row = i; } } int oddcolumn = 0;//记录和为奇数的列数 int column = 0;//记录和为奇数的列数的下标 for(int i = 0; i < n; i++) { int sum = 0; for(int j = 0; j < n; j++) { sum += arr[j][i]; } if(sum % 2 == 1) { oddcolumn++; column = i; } } row++;//题目答案中的下标不是从0开始,而是从1开始的 column++; if(oddcolumn == 0 && oddrow == 0) System.out.println("OK"); else if(oddcolumn == 1 && oddrow == 1) System.out.println(row + " " + column); else System.out.println("Corrupt"); } }
0.0分
5 人评分
点我有惊喜!你懂得!浏览:2754 |
C语言程序设计教程(第三版)课后习题11.11 (C语言代码)浏览:804 |
C语言程序设计教程(第三版)课后习题8.6 (C语言代码)浏览:609 |
C语言训练-列出最简真分数序列* (C语言代码)浏览:543 |
【出圈】 (C语言代码)浏览:824 |
剪刀石头布 (C语言代码)浏览:802 |
C语言训练-亲密数 (C语言代码)浏览:697 |
【偶数求和】 (C语言代码)浏览:460 |
小九九 (C语言描述,不看要求真坑爹)浏览:1006 |
前10名 (C语言代码)浏览:773 |