解题思路: arr数组代表的是所有会出现的可能性,第一位是n,第二位是m,第三位是结果。然后拿到值遍历对比,前两位相等直接输出答案。
参考代码:
import java.util.Scanner; public class Main{ public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[][] arr = {{0,1,-1},{0,2,1},{1,0,1},{1,2,-1},{2,0,-1},{2,1,1},{0,0,0},{1,1,0},{2,2,0}}; int n = sc.nextInt(); int m = sc.nextInt(); for (int i = 0; i < arr.length; i++) { if ((arr[i][0] == n) && (arr[i][1] == m)){ System.out.println(arr[i][2]); } } } }
0.0分
1 人评分
母牛的故事 (C语言代码)浏览:739 |
水仙花 (C语言代码)浏览:1163 |
幸运数 (C++代码)浏览:1309 |
C语言程序设计教程(第三版)课后习题6.2 (C语言代码)浏览:569 |
GC的苦恼 (C语言代码)浏览:672 |
1052题解(链表操作)浏览:782 |
母牛的故事 (C语言代码)浏览:625 |
数列有序 (C语言代码)浏览:974 |
WU-C语言程序设计教程(第三版)课后习题12.3 (C++代码)浏览:925 |
C语言程序设计教程(第三版)课后习题1.5 (C语言代码)浏览:477 |