Language C++

#include 
#include 
using namespace std;
int main()
{
   int ac = 32;          
                         
   while(true)
   { 
     cout << "Character   Decimal   Hexadecimal\n\n";
     int upper;
     for( upper =ac + 20; ac < upper && ac < 256; ++ac)
        cout << "      " << (char)ac     
             << setw(10) << dec << ac
             << setw(10) << hex << ac << endl;
     if( upper >= 256)   
        break;
     cout <<"To Go on, hit , to Stop hit +";
     char answer;
     cin.get(answer);
     if( answer == 'q' || answer == 'Q' )
       break;
     cin.sync();
   }
   return 0;
}