//Read in 5 numbers, find the total #include using namespace std; int main() { double num,total=0; int i; for (i = 0; i<5; i++) { cout<<"Enter a number:"; cin>>num; total+=num; } //for loop cout<<"total="<