Skip to content

Instantly share code, notes, and snippets.

@fahdi
Created February 18, 2015 08:53
Show Gist options
  • Save fahdi/330feef82e9206a57bf7 to your computer and use it in GitHub Desktop.
Save fahdi/330feef82e9206a57bf7 to your computer and use it in GitHub Desktop.
Table Printing
#include<iostream>
using namespace std;
int main(void)
{
cout << "A multiplication table:" << endl
<< " 1\t2\t3\t4\t5\t6\t7\t8\t9" << endl
<< "" << endl;
for(int c = 1; c < 10; c++)
{
cout << c << "| ";
for(int i = 1; i < 10; i++)
{
cout << i * c << '\t';
}
cout << endl;
}
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment