Advertisement
Guest User

multiplication table for merna

a guest
Apr 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1.  
  2. using namespace std;
  3. int main ()
  4. {
  5. cout << "                 A multiplication table:" << endl;
  6.  for (int i=1;i <=12;i++){
  7.  for (int j=1;j <=12;j++)cout <<"\t"<<i*j;
  8.  cout <<"\n";
  9.  }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement