在第 226 页上的 例2 12 行的代码有错:
错误代码,不可AC\text{AC}AC:
for (int j = 1; j <= i; j++)
可 AC\text{AC}AC 的代码:
for (int j = 1; j < i; j++)