/ Published in: C++
Expand |
Embed | Plain Text
// Loop used for two-dimensional iterations for a table // useful for tabular output for(int x = 1;x<=9;x++) { cout<<endl; for(int i = 1;i<=9;i++) { cout<<"\t"<<x*i; } }
You need to login to post a comment.
