C++ Program : Multiplication Table



Write a program that creates a Multiplication Table


#include <iostream.h>

#include <conio.h>




int main()

{


  for(int i=1; i<=10; i++)

  {

     for(int j=1; j<=10; j++)


      cout<<(i*j)<<" ";


     cout<<endl;

  }


   getch();

   return 0;


}
Share:

No comments:

Post a Comment

Thanks for Suggestion / Comment!

God Bless!

Our Sponsor

Popular Post