PLEASE ALWAYS USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post. http://www.cplusplus.com/articles/jEywvCM9/ http://www.cplusplus.com/articles/z13hAqkS/
Hint: You can edit your post, highlight your code and press the <> formatting button.
You can use the preview button at the bottom to see how it looks.
Change while (x != 5) to for (int x = 0; x < 5; x++) and remove the "x++" from inside the {}s.
You may also want to change the type for "Total". One very large number and "Total" could exceed the range of what an int can store. You might consider a "long long" for the type of "Total".