码迷,mamicode.com
首页 > 其他好文 > 详细

编程之美笔记--第一章游戏之乐--1.2中国象棋将帅问题

时间:2014-07-25 02:42:24      阅读:209      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   java   color   使用   2014   

bubuko.com,布布扣

后来一版作者又将最后一句改为:”要求在代码中只能使用一个字节存储变量“。

 

bubuko.com,布布扣

我的解法:

package android.zlb.java;
/**
 * 
 * @author zhanglibin
 *
 */
public class TestXiangqi {
    public static void main(String[] args) {
        for(int i = 11; i < 100; i++) {
            if(i / 10 % 3 == 1 && (i % 10 == 1 || i % 10 == 4 || i % 10 == 7)) {
                System.out.println(i + "is not the right number");
                continue;
            }
            
            if(i / 10 % 3 == 2 && (i % 10 == 2 || i % 10 == 5 || i % 10 == 8)) {
                System.out.println(i + "is not the right number");
                continue;
            }
            
            if(i / 10 % 3 == 0 && (i % 10 == 3 || i % 10 == 6 || i % 10 == 9)) {
                System.out.println(i + "is not the right number");
                continue;
            }
            
            if(i % 10 == 0) {
                System.out.println(i + " has to delete");
                continue;
            }
            
            System.out.println(" i = " + i);
        }
    }
}

哈哈!

编程之美笔记--第一章游戏之乐--1.2中国象棋将帅问题,布布扣,bubuko.com

编程之美笔记--第一章游戏之乐--1.2中国象棋将帅问题

标签:android   style   blog   http   java   color   使用   2014   

原文地址:http://www.cnblogs.com/zhanglibin/p/3866786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!