📅  最后修改于: 2022-03-11 14:44:55.229000             🧑  作者: Mango
// for each iteration, test three conditions
while (small < large && large > 0 && small < MAXSMALL)
{
std::cout << ".";
small++;
large-=2;
}