#include using namespace std; int main() { cout << "ASCII Table for A-Z" << endl; for(int c='A';c<='Z';c++) cout << (char) c << " " << (int) c << endl; cout << "done" << endl; return 0; }