need help writing this program, i'm completely stumped and kinda lost on even were to start, sorry i don't normally ask for help but if you could help me it would be much appriciated!!!
Use a single cout statement for all output. Make sure you use manipulators to format your output. The first column should be displayed using default width and alignment, make sure you leave a TAB after the first column, then the second column should be displayed using a field width of 15 left justified, lastly the last column should be displayed using a field width of 20 right justified. You need to define only three variables in your program to hold the initial data values in the first row. Other values should be computed in your code.
Hint: you need to experiment with right, left, and setfill() output manipulators to ensure that your output will exactly match the one given below.
Well, I would go along with their advice and first write the cout statement, then start experimenting with some of the manipulators in between the numbers to see the affects.