编程之美 中国象棋将帅问题

// 题目:中国象棋将帅问题,输出所有符合规则的将帅位置,用1-9代表九宫格中的位置
// 解法1:使用两个变量i和j表示将和帅的位置
public class Main {

	public static void main(String[] args){
		printPos();
	}
	
	public static void printPos(){
		for(int i = 0;i<9;i++){
			for(int j = 0;j<9;j++){
				if(i%3 == j%3){
					continue;
				}else{
					System.out.println("A = "+(i+1)+", B = "+(j+1));
				}
			}
		}
	}

}

// 解法2:只用一个变量做不同的处理就可以分别表示将和帅的位置
public class Main {
	
	public static void main(String[] args){
		printPos();
	}
	
	public static void printPos(){
		byte i = 81;
		while(i--!=0){
			int temp1 = i/9%3;								//i/9是一个位置
			int temp2 = i%9%3;								//i%9是另一个位置,之所以要%3是为了防止类似于3,6,9这种情况的发生
			if(temp1 == temp2){
				continue;
			}
			System.out.println("A = "+(i/9+1)+", B = "+(i%9+1));
		}
	}
	
}

    原文作者:wxwxy919
    原文地址: https://blog.csdn.net/u011438605/article/details/72457364
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞