练习5.22
1 int main() 2 { 3 int sz = get_size(); 4 while (sz <= 0) 5 { 6 sz = get_size(); 7 continue; 8 } 9 system("pause"); 10 return 0; 11 }
c++ primer 5.5.3节练习答案
原文:http://www.cnblogs.com/wuyinfenghappy/p/7270803.html