#Include <iosteam> using namespace std; int main() { cout << "N\t10*N\t100*N\t1000*N" << endl; int x=1; while(x<=5){ cout << x << "\t" << x*10 << "\t" << x*100 << "\t" << x*1000 << endl; x++; } return 0;} Explanation: The code prints the header, N 10*N 100*N 1000*N, using \t. It sets up x as 1, which will control the while loop. A while loop is created to iterate while x remains less than or equal to 5. Within the loop, the necessary values are printed, and after each print, x increments by 1.
</iosteam>