//print the the ASCII table from the number which you input#include<stdio.h>#include<iostream.h>int main()...{ int i; cout<<"input the number which you want to begin to print:"; cin>>i; while(i<=125) ...{ printf("%d 对应的字符是:%c ",i,i); ++i; }; }