您的位置:首页 > 编程语言

编程之美——象棋将帅问题

2015-05-13 11:30 183 查看


解法一:

public class Chess_Test {

    

    public static void main(String[] args) throws InterruptedException{

        long t1 = System.currentTimeMillis();

        

        Byte i = 81;

        while(i-- > 0){

            if(i / 9 % 3 == i % 9 % 3)

                continue;

            System.out.println(String.format("A = %d, B = %d\n", i / 9 + 1, i % 9 + 1));

        }

        System.out.println(System.currentTimeMillis()-t1);

        

    }

}

解法二:

public class Chess_Test2 {

    

    class Point{

        char a;

        char b;

    }

    

    public static void main(String[] args) throws InterruptedException{

        long t1 = System.currentTimeMillis();

        Point p = new Chess_Test2().new Point();

        for(p.a = 1; p.a <= 9; p.a++){

            for(p.b = 1; p.b <= 9; p.b++){

                if(p.a % 3 == p.b % 3){

                    continue;

                }

                System.out.println(String.format("A = %c, B = %c\n", p.a+'0', p.b+'0'));

            }

        }

        System.out.println(System.currentTimeMillis()-t1);

        

    }

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  编程之美 java