三维坐标特征与卦限

三维坐标特征与卦限

原理

手动建立一个映射,其实就是手动完成了散列映射。然后暴力查表就完事儿了嗷

卦限符号特征(1:正0:负)存储位置
11117
20113
30011
41015
50102
61106
70000
81004

源码留念


public class App {
	private static Scanner scanner = new Scanner(System.in);
	final private static String mapping = "73628451";
	private static String typing = null;
	private static char result = '0';
	private static String msg = null;

	public static void main(String[] args) {
		for (;;) {
			try {
				start();

			} catch (Exception e) {
				// TODO: handle exception
				System.out.println("error typing!");
			}

		}
	}
	private static void start() {
		input();
		action();
		display();
	}

	private static void display() {
		System.out.println(msg);
	}

	private static void action() {
		if (typing.equals("c")) {
			msg = "exit procedure!";
			display();
			System.exit(0);
		}
		int t = Integer.parseInt(typing, 2);
		result = mapping.charAt(t);
		msg = "the result=" + result;
	}
	private static void input() {
		// TODO Auto-generated method stub
		msg = "input coordinate feature or opreation code:";
		display();
		if (scanner.hasNextLine()) {
			typing = scanner.nextLine();
		}
	}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值