// This is a program to print the next 10 numbers after the number entered. // written in Borland C++ (using C++ Builder 3; 1998 version) #include #include #include #pragma hdrstop int main() { int start,j; clrscr(); // clear the screen cout << "Please enter a number (integer) "; cin >> start; //for(j=0;j<10;j++) // cout << (start + j) << endl; // endl means 'newline' // a more compact way (should work in any language) for(j=start;j