I have a simple display() method that essentially looks like this
#include <stdlib.h>
#include <iostream>
#include <iomanip>
#include "Pieces.h"
using namespace std;
void Pieces::BeginInstruct(int& i){
cout<<endl<<endl;
cout<<i++<<":"<<setw(5)<<"Open the program."<<endl
<<i++<<":"<<setw(5)<< "Click \"File\" and then\"New\"."
<<endl;
}
Theres obviously more but what I am concerned with is that setw() is not doing anything...Im trying to get the list of instructions to align yet the output shows
1:Open the program
2:Click "File" and then "New"