#include #include int main() { const int MAXNUMS = 4; int count; float num, total; cout << "\nThis program will ask you to enter " << MAXNUMS << " numbers.\n"; count = 1; total = 0; cout << setiosflags(ios::fixed) << setprecision(3); while (count <= MAXNUMS) { cout << "\nEnter a number: "; cin >> num; total = total + num; cout << "The total is now " << total; count++; } cout << "\n\nThe final total is " << total << endl; return 0; }