z这个代表什么意思??
..
System.out.print(Thread.currentThread());
accounts[from] -= amount;
System.out.printf("%10.2f from %d to %d", amount, from, to);
accounts[to] += amount;
System.out.printf("Total Balance: %10.2f%n", getTotalBalance());
sufficientFunds.signalAll();
.
.
这两句中间 %10.2f%n %10.2f 是什么意思?
搜索更多相关的解决方案:
代表
----------------解决方案--------------------------------------------------------
去看看c语言的printf();怎么用的 浮点数是怎么表示的
----------------解决方案--------------------------------------------------------
基本的东西,应该好好学学
----------------解决方案--------------------------------------------------------
因为我看的教程都没教过printf的,而且C基本上也没碰过嘛
----------------解决方案--------------------------------------------------------