我想知道是否有一种更简单的方法来重写这段代码.
System.out.print(x); System.out.print("+" +y); System.out.println("=" +sum);
x的值为10,y为5,因此输出显示为:
10+5=15
有没有更快的方法来做到这一点,也就是说,这样做的方法是不使用print语句三次?
System.out.print(x + "+" + y + "=" + sum);
如果所有的话
System.out.printf("%d + %d = %d%n", x, y, sum); // or perhaps better System.out.printf("%d + %d = %d%n", x, y, x + y);
如果是浮点数:
System.out.printf("%.2f + %.2f = %.2f%n", x, y, sum); // or perhaps better System.out.printf("%.2f + %.2f = %.2f%n", x, y, x + y);
System.out.println(String.format("%d + %d = %d", x, y, sum));