//Read in numbers: find total, using a for loop #include using namespace std; void main() { double num, total=0.0; int numbers; int n; //variable to 'drive' the loop, usually a single letter cout<<"How many numbers are there to be added:"; cin>>numbers; for(n=0; n>num; total=total+num; } //end of for loop cout<<"Total="<