【九度OJ】1010【模拟】

此题等级三,难度不大,主要想练一下map。用map很方便,不用各种if-else判断。在网上找到还有其他做法,用的是Java中的ENUM类ordinal()方法找到英文对应的数字。

另外此题就是字符串处理了,基础不多说

代码:

package Test1;

import java.util.HashMap;
import java.util.Scanner;

public class Test7 {

	/**
	 * by qr jobdu 1010 2014-8-8
	 */
	public static void main(String[] args) {
		HashMap<String, Integer> map = new HashMap<String, Integer>();
		String num[] = { "zero", "one", "two", "three", "four", "five", "six",
				"seven", "eight", "nine" };
		for (int i = 0; i < 10; i++) {
			map.put(num[i], i);
		}

		Scanner scan = new Scanner(System.in);
		while (true) {
			String str = scan.nextLine();
			if (str.equals("zero + zero ="))
				break;

			String equation[] = str.split(" ");

			String strch = "";
			for (int i = 0; i < equation.length; i++) {
				if (!(equation[i].equals("+") || equation[i].equals("=")))
					strch += map.get(equation[i]);
				else
					strch += equation[i];
			}

			System.out.println(Integer.parseInt(strch.substring(0,
					strch.indexOf("+")))
					+ Integer.parseInt(strch.substring(strch.indexOf("+") + 1,
							strch.indexOf("="))));
		}
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值