C++ primer plus第六章 编程练习2“编写一个程序,最多将10个donation值读入到一个double数组中。程序遇到非数字输入时将结束输入,并报告这些数字的平均值以及数组中有多少个数字大于平均值” #include<iostream> #include<cctype> #include<string> int main() { const int SIZE = 10; bool flag; int count = 0,num = 0,len = 0; using namespace std; string donation; doubl...