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

控制台输入一个简单表达式(+-*/)计算结果

时间:2015-01-27 13:38:04      阅读:153      评论:0      收藏:0      [点我收藏+]

标签:

1, 

import java.util.Scanner

/**
 * Author: bruce
 * Date: 2015-01-24
 */
object ConsoleScanner {

	def main(args: Array[String]) {

		println("Please enter a phase: ");
		val scan = new Scanner(System.in);
		val phase = scan.next()

		algo(phase, "+")
		algo(phase, "-")
		algo(phase, "*")
		algo(phase, "/")


	}

	def algo(phase: String, fu: String): Unit = {
		val arr = phase.split("[" + fu + "]")

		if (arr.length == 2) {

			try {
				arr(0).toInt
				arr(1).toInt

				println("result: " + (arr(0).toInt + arr(1).toInt))

			} catch {
				case e: NumberFormatException => println("type is not match")
			}

		}
	}

}



控制台输入一个简单表达式(+-*/)计算结果

标签:

原文地址:http://my.oschina.net/brucegao/blog/372161

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