java中的数学计算

时间:2013-12-11 08:10:55

标签: java android

是否有一种简单的方法(而不是硬编码)来显示java中的中间计算? 例如:x + y * 3 = 10 + 15 * 3 = 55 我没有成功地寻找答案。

2 个答案:

答案 0 :(得分:1)

你可以这样做 -

public static void main(String[] args) {
  int x = 10;
  int y = 15;
  System.out.printf("x+y*3 = %d+%d*3 = %d", x, y, (x + (y * 3)));
}

哪个输出

x+y*3 = 10+15*3 = 55

这里。

答案 1 :(得分:0)

尝试学习解析字符串,如下所示:http://www.javapractices.com/topic/TopicAction.do?Id=87