/***********************
Lauren Buecker
Assignment 7
***********************/
#include <iostream>
#include <iomanip>
usingnamespace std;
int main()
{
// display column headings and set field lengths
cout << setw( 7 ) << "Decimal" << setw( 9 ) << "Octal " << setw( 15 ) << "Hexadecimal " << setw( 13 ) << "Character" << showbase << '\n';
// loop through ASCII values 33-126 and display corresponding integer, octal and hexadecimal values
for ( int decimal = 33; decimal <=126; ++decimal ){
cout << static_cast< int > ( 'a') << endl;
}/* Write a for header that will iterate from 33 through 126*/
/* Write an output statement to output the current ASCII value in decimal, octal, hexadecimal and character formats; follow the spacing convention established above */
system("pause");
return 0;
} // end main