使用一下方法遍历较简单,且输出是占一行:
for (auto c : scores) { cout << c << " "; }
比起下面简单得多,下面输出是一个数字一行:
for (string::size_type i = 0; i < ; ++i) { cout << scores[i] << endl; }
C++ Primer-遍历小技巧
原文:https://www.cnblogs.com/archerzon/p/9607012.html