在做流程图的时候遇到了while(n-->0){...},它与for循环相同即:for(int i = 0 ; i < n ; ++i ){...},同时还可以写为while(--n >= 0){...),n表示循环n次。