C++ program to print multipication table of a number

#include <iostream>
using namespace std;

 int main()
   {
       int num,i=1;
      cout<<"Enter Number to Make its table: ";
      cin>>num;
      while(i<=10)
      {
       cout<<num<<" * "<<i<<" = "<<num*i<<endl;
        i++;

      }
      return 0;
   }

1 comment:

  1. It all seems so easy, but if it comes to programming, it is unfortunately not. That is why I use ready solutions and services from https://grapeup.com/ because here I am sure that the application will definitely work as I care. After all, I often use cloud-based applications.

    ReplyDelete