分号的 28 年啊. 虽然省略了分号的语言不少, 但使用率都比不过.
------
1980: C
printf("%10.2f", x);
1988: C++
cout << setw(10) << setprecision(2) << showpoint << x;
1996: Java
.. 太长, 还是点链接看吧
http://alan.dipert.org/post/153430634/the-march-of-progress2004: Java
System.out.printf("%10.2f", x);
2008: Scala and Groovy
printf("%10.2f", x)
------