#include using namespace std; int main() { int ascii; cout << "Enter an integer number between 0 and 255: "; cin >> ascii; while (ascii < 0 || ascii > 255) { cout << " The integer must be a number between 0 and 255. Re-enter the number: "; cin >> ascii; } cout << "The numeric code " << ascii << " corresponds to the character " << (char)ascii << " in the ASCII table.\n"; return 0; }