/ Published in: C++
                    
                                        
                            
                                Expand |
                                Embed | Plain Text
                            
                        
                        Copy this code and paste it in your HTML
// 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;
}
}
Comments
 Subscribe to comments
                    Subscribe to comments
                
                